Last active
March 6, 2019 18:08
-
-
Save blue-bird1/48c9cf012579bb1323a0d9acd20847f4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
wget https://github.com/python/cpython/archive/v3.8.0a2.zip && unzip *.zip && cd cpython* | |
apt-get install libsqlite3-dev libssl-dev libzip-dev libffi-dev | |
./configure --prefix /opt/python3 --enable-shared && make && make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment