Skip to content

Instantly share code, notes, and snippets.

@chrismullins
Created August 7, 2015 22:08
Show Gist options
  • Save chrismullins/1bd6f3b0cbd02a14030b to your computer and use it in GitHub Desktop.
Save chrismullins/1bd6f3b0cbd02a14030b to your computer and use it in GitHub Desktop.
Build python 2.7.10 on linux
#/bin/bash
mkdir python2710 && cd python2710
wget https://www.python.org/ftp/python/2.7.10/Python-2.7.10.tgz --no-check-certificate
gunzip Python-2.7.10.tgz
tar xf Python-2.7.10.tar
cd Python-2.7.10
./configure
make
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment