Skip to content

Instantly share code, notes, and snippets.

@rudSarkar
Created April 16, 2025 09:17
Show Gist options
  • Save rudSarkar/21c02d67227704d16a48787b96c140c1 to your computer and use it in GitHub Desktop.
Save rudSarkar/21c02d67227704d16a48787b96c140c1 to your computer and use it in GitHub Desktop.
Install python2.7 from source
#!/bin/bash
"""
Run this script as sudo
"""
wget https://www.python.org/ftp/python/2.7/Python-2.7.tgz
tar xvzf Python-2.7.tgz
cd Python-2.7/
./configure
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment