Skip to content

Instantly share code, notes, and snippets.

View LeoFalco's full-sized avatar
🎯
Focusing

Leonardo Falco LeoFalco

🎯
Focusing
View GitHub Profile
@iscle
iscle / gist:66e946553e74a883b4494d3b6df0ee82
Last active May 8, 2025 02:22
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"