Last active
November 3, 2018 14:42
-
-
Save elzekool/c8f77986927e4ffbd4d3fb47a9f926f8 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
sudo apt-get update -y | |
sudo apt-get install build-essential tk-dev libncurses5-dev libncursesw5-dev libreadline6-dev libdb5.3-dev libgdbm-dev libsqlite3-dev libssl-dev libbz2-dev libexpat1-dev liblzma-dev zlib1g-dev libffi-dev -y | |
wget https://www.python.org/ftp/python/3.7.1/Python-3.7.1.tgz | |
tar xf Python-3.7.1.tgz | |
cd Python-3.7.1 | |
./configure | |
make | |
sudo make altinstall | |
cd .. | |
sudo rm -rf Python-3.7.1 | |
rm Python-3.7.1.tgz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment