Skip to content

Instantly share code, notes, and snippets.

View tonymorony's full-sized avatar

Anton "TonyL" Lysakov tonymorony

View GitHub Profile
@tonymorony
tonymorony / gist:0c486fa3b83d72c4e6155ebdef684cad
Created July 18, 2024 14:32 — forked from iscle/gist:66e946553e74a883b4494d3b6df0ee82
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"