Skip to content

Instantly share code, notes, and snippets.

@mishailovic
Created January 23, 2022 19:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mishailovic/79f32ff8dd96a27e8b69a4b79b8f6b82 to your computer and use it in GitHub Desktop.
Save mishailovic/79f32ff8dd96a27e8b69a4b79b8f6b82 to your computer and use it in GitHub Desktop.
Install any Python version
version=3.10.2
sudo apt-get install build-essential checkinstall libreadline-gplv2-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev
wget https://www.python.org/ftp/python/$version/Python-$version.tgz
tar -xvf Python-$version.tgz
cd Python-$version
./configure
make
sudo checkinstall
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment