-
-
Save glarrain/4279584 to your computer and use it in GitHub Desktop.
Revisions
-
glarrain revised this gist
Dec 13, 2012 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ sudo apt-get install build-essential libsqlite3-dev zlib1g-dev libncurses5-dev libgdbm-dev libbz2-dev libreadline5-dev libssl-dev wget http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tgz tar xz Python-2.7.3.tgz -
glarrain revised this gist
Dec 13, 2012 . 1 changed file with 1 addition and 3 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -14,6 +14,4 @@ curl -O https://raw.github.com/pypa/pip/master/contrib/get-pip.py sudo python2.7 distribute_setup.py sudo python2.7 get-pip.py sudo pip-2.7 install virtualenv virtualenvwrapper -
glarrain revised this gist
Dec 13, 2012 . 1 changed file with 3 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -10,9 +10,10 @@ sudo make altinstall python2.7 curl -O http://python-distribute.org/distribute_setup.py curl -O https://raw.github.com/pypa/pip/master/contrib/get-pip.py sudo python2.7 distribute_setup.py sudo python2.7 get-pip.py sudo easy_install-2.7 virtualenv -
glarrain revised this gist
Dec 13, 2012 . 1 changed file with 6 additions and 7 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,17 +1,16 @@ sudo apt-get install build-essential libsqlite3-dev zlib1g-dev libncurses5-dev libgdbm-dev libbz2-dev libreadline5-dev libssl-dev libdb-dev wget http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tgz tar xz Python-2.7.3.tgz cd Python-2.7.3 ./configure make sudo make altinstall python2.7 curl -O http://python-distribute.org/distribute_setup.py sudo python2.7 distribute_setup.py wget http://peak.telecommunity.com/dist/ez_setup.py sudo python2.7 ez_setup.py -
lukaslundgren created this gist
May 11, 2012 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ sudo apt-get install build-essential libsqlite3-dev zlib1g-dev libncurses5-dev libgdbm-dev libbz2-dev libreadline5-dev libssl-dev libdb-dev wget http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tgz tar -xzf Python-2.7.3.tgz cd Python-2.7.3 ./configure --prefix=/usr --enable-shared make sudo make install cd .. sudo update-alternatives --install /usr/bin/python python /usr/bin/python2.6 20 sudo update-alternatives --install /usr/bin/python python /usr/bin/python2.7 10 sudo update-alternatives --set python /usr/bin/python2.6 wget http://peak.telecommunity.com/dist/ez_setup.py sudo python2.7 ez_setup.py sudo easy_install-2.7 virtualenv