Created
April 16, 2025 09:17
-
-
Save rudSarkar/21c02d67227704d16a48787b96c140c1 to your computer and use it in GitHub Desktop.
Install python2.7 from source
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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