Created
October 20, 2016 20:13
-
-
Save lxndrv/f1e4ea1b1b7a40a78a99f1f631b1376f to your computer and use it in GitHub Desktop.
This file contains 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
sudo apt-get install build-essential checkinstall | |
sudo apt-get install libreadline-gplv2-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev | |
cd /usr/src | |
sudo wget https://www.python.org/ftp/python/2.7.12/Python-2.7.12.tgz | |
sudo tar xzf Python-2.7.12.tgz | |
cd Python-2.7.12 | |
sudo ./configure | |
sudo make | |
sudo make install | |
cd | |
curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py" | |
python get-pip.py | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment