Last active
June 12, 2019 23:36
-
-
Save zekroTJA/befbb9f4001b9c05ed4840f2d3570e1a 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
#!/bin/sh | |
# IF THERE IS A NEWER PYTHON VERSION AVAILABLE, CHANGE VERSION HERE | |
RELEASE=3.6.2 | |
sudo apt-get install libbz2-dev liblzma-dev libsqlite3-dev libncurses5-dev libgdbm-dev zlib1g-dev libreadline-dev libssl-dev tk-dev | |
mkdir ~/python3 | |
cd ~/python3 | |
wget https://www.python.org/ftp/python/$RELEASE/Python-$RELEASE.tar.xz | |
tar xvf Python-$RELEASE.tar.xz | |
cd Python-$RELEASE | |
./configure | |
make | |
sudo make install | |
sudo rm -rf ~/python3/Python-$RELEASE | |
cd ~ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment