Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tonymorony/0c486fa3b83d72c4e6155ebdef684cad to your computer and use it in GitHub Desktop.
Save tonymorony/0c486fa3b83d72c4e6155ebdef684cad to your computer and use it in GitHub Desktop.
Install python2.7 on Ubuntu 23.04 as "python"
wget https://www.python.org/ftp/python/2.7.18/Python-2.7.18.tgz
tar xzf Python-2.7.18.tgz
cd Python-2.7.18
sudo ./configure --enable-optimizations
sudo make altinstall
sudo ln -s "/usr/local/bin/python2.7" "/usr/bin/python"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment