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 update | |
sudo apt install build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev libsqlite3-dev wget libbz2-dev | |
wget https://www.python.org/ftp/python/3.8.0/Python-3.8.0.tgz | |
tar -xf Python-3.8.0.tgz | |
cd Python-3.8.0 | |
./configure --enable-optimizations | |
make -j 8 | |
sudo make altinstall |