Last active
April 3, 2023 08:15
-
-
Save ctokheim/4507404 to your computer and use it in GitHub Desktop.
Revisions
-
ctokheim revised this gist
Jan 24, 2013 . 1 changed file with 1 addition and 0 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 @@ -8,6 +8,7 @@ ######################################### # installing python 2.7.3 mkdir -p ~/local wget http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tgz tar xvzf Python-2.7.3.tgz cd Python-2.7.3 -
ctokheim revised this gist
Jan 23, 2013 . 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 @@ -32,4 +32,4 @@ cd pip-1.2.1 ~/local/bin/pip install numpy # install numpy ~/local/bin/pip install scipy ~/local/bin/pip freeze # to check python module version info -
ctokheim revised this gist
Jan 23, 2013 . 1 changed file with 1 addition and 0 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,7 @@ cd Python-2.7.3 ./configure make make altinstall prefix=~/local # specify local installation directory ln -s ~/local/bin/python2.7 ~/local/bin/python cd .. # install setuptools and pip for package management -
ctokheim revised this gist
Jan 23, 2013 . 1 changed file with 3 additions 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 @@ -2,7 +2,9 @@ ######################################### # Installing python and necessary packages # locally. This script will install python # into the ~/local/bin directory and install # numpy + scipy ######################################### # installing python 2.7.3 -
ctokheim revised this gist
Jan 23, 2013 . 1 changed file with 2 additions and 5 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 @@ -26,10 +26,7 @@ cd pip-1.2.1 ~/local/bin/python setup.py install # specify the path to the python you installed above # Now you can install other packages using pip ~/local/bin/pip install numpy # install numpy ~/local/bin/pip install scipy pip freeze # to check python module version info -
ctokheim revised this gist
Jan 22, 2013 . 1 changed file with 9 additions and 4 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 @@ -11,20 +11,25 @@ tar xvzf Python-2.7.3.tgz cd Python-2.7.3 ./configure make make altinstall prefix=~/local # specify local installation directory cd .. # install setuptools and pip for package management wget http://pypi.python.org/packages/source/s/setuptools/setuptools-0.6c11.tar.gz#md5=7df2a529a074f613b509fb44feefe74e tar xvzf setuptools-0.6c11.tar.gz cd setuptools-0.6c11 ~/local/bin/python setup.py install # specify the path to the python you installed above cd .. wget http://pypi.python.org/packages/source/p/pip/pip-1.2.1.tar.gz#md5=db8a6d8a4564d3dc7f337ebed67b1a85 tar xvzf pip-1.2.1.tar.gz cd pip-1.2.1 ~/local/bin/python setup.py install # specify the path to the python you installed above # Now you can install other packages using pip pip install numpy # install numpy pip install scipy pip install networkx pip install pygr pip install matplotlib pip freeze # to check python module version info -
ctokheim revised this gist
Jan 16, 2013 . 1 changed file with 2 additions and 0 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,3 +1,5 @@ #!/bin/bash ######################################### # Installing python and necessary packages # locally. -
ctokheim renamed this gist
Jan 16, 2013 . 1 changed file with 2 additions and 0 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,12 +10,14 @@ cd Python-2.7.3 ./configure make make altinstall prefix=~ # specify local installation directory cd .. # install setuptools and pip for package management wget http://pypi.python.org/packages/source/s/setuptools/setuptools-0.6c11.tar.gz#md5=7df2a529a074f613b509fb44feefe74e tar xvzf setuptools-0.6c11.tar.gz cd setuptools-0.6c11 ~/bin/python setup.py install # specify the path to the python you installed above cd .. wget http://pypi.python.org/packages/source/p/pip/pip-1.2.1.tar.gz#md5=db8a6d8a4564d3dc7f337ebed67b1a85 tar xvzf pip-1.2.1.tar.gz cd pip-1.2.1 -
ctokheim created this gist
Jan 11, 2013 .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,26 @@ ######################################### # Installing python and necessary packages # locally. ######################################### # installing python 2.7.3 wget http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tgz tar xvzf Python-2.7.3.tgz cd Python-2.7.3 ./configure make make altinstall prefix=~ # specify local installation directory # install setuptools and pip for package management wget http://pypi.python.org/packages/source/s/setuptools/setuptools-0.6c11.tar.gz#md5=7df2a529a074f613b509fb44feefe74e tar xvzf setuptools-0.6c11.tar.gz cd setuptools-0.6c11 ~/bin/python setup.py install # specify the path to the python you installed above wget http://pypi.python.org/packages/source/p/pip/pip-1.2.1.tar.gz#md5=db8a6d8a4564d3dc7f337ebed67b1a85 tar xvzf pip-1.2.1.tar.gz cd pip-1.2.1 ~/bin/python setup.py install # specify the path to the python you installed above # Now you can install other packages using pip pip install numpy # example installation command pip freeze # to check python module version info