Last active
July 24, 2020 19:16
-
-
Save p3jitnath/b8ae0664988d2fab0a30231416b0d47d to your computer and use it in GitHub Desktop.
Build python from source
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 install build-essential checkinstall | |
sudo apt install libreadline-gplv2-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev | |
wget https://www.python.org/ftp/python/3.6.9/Python-3.6.9.tar.xz | |
tar xvf Python-3.6.9.tar.xz | |
cd Python-3.6.9/ | |
./configure | |
sudo make altinstall |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment