Skip to content

Instantly share code, notes, and snippets.

@pradeepkumargali
Created April 13, 2017 16:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pradeepkumargali/9cd1cd8ed45db7cf46c30e9e20bc8dd6 to your computer and use it in GitHub Desktop.
Save pradeepkumargali/9cd1cd8ed45db7cf46c30e9e20bc8dd6 to your computer and use it in GitHub Desktop.
Download, compile and install Python
#The --no-check-certificate is optional
cd /opt
wget --no-check-certificate https://www.python.org/ftp/python/2.7.6/Python-2.7.6.tar.xz
tar xf Python-2.7.6.tar.xz
cd Python-2.7.6
./configure --prefix=/usr/local
make && make altinstall
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment