/doit
#!/bin/bash | |
# Source: http://toomuchdata.com/2012/06/25/how-to-install-python-2-7-3-on-centos-6-2/ | |
yum groupinstall "Development tools" | |
yum install zlib-devel | |
yum install bzip2-devel openssl-devel ncurses-devel | |
wget http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tar.bz2 | |
tar xf Python-2.7.3.tar.bz2 | |
cd Python-2.7.3 | |
./configure --prefix=/usr/local | |
make && make altinstall | |
/usr/local/bin/python2.7 | |
set -o vi | |
wget http://pypi.python.org/packages/source/d/distribute/distribute-0.6.27.tar.gz | |
tar xf distribute-0.6.27.tar.gz | |
cd distribute-0.6.27 | |
python2.7 setup.py install | |
/usr/local/bin/easy_install-2.7 virtualenv |
without zlib Pacakge ?
without openssl ?
My Friends! Thanks for help. But I was able to install till line 13. After that "wget http://pypi.python.org/packages/source/d/distribute/distribute-0.6.27.tar.gz" portion not downloading the packages.
links seems to be broken..
Thanks again! I am able to install my django on top of python now :)
@byomkesh99 add --no-check-certificate to the end of each wget command in the script that should fix the problem. I'm running the scripts now so I don't yet know if this will fully resolve the problem. Be prepared to respond to some yum prompts though, this script isn't 100% automatic but it beats a manual install.
thanks!
Hi:
IOError: invalid Python installation: unable to open /usr/local/lib/python2.7/config/Makefile (No such file or directory)
:(
y/w! totally forgot i had this until someone i work with found it by googling, haha...interwebs...
great man 👍
Thanks! rritoch
Adding ditto only change " --no-check-certificate"
!/bin/bash
Source: http://toomuchdata.com/2012/06/25/how-to-install-python-2-7-3-on-centos-6-2/
yum groupinstall "Development tools"
yum install zlib-devel
yum install bzip2-devel openssl-devel ncurses-devel
wget http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tar.bz2
tar xf Python-2.7.3.tar.bz2
cd Python-2.7.3
./configure --prefix=/usr/local
make && make altinstall
/usr/local/bin/python2.7
set -o vi
wget --no-check-certificate http://pypi.python.org/packages/source/d/distribute/distribute-0.6.27.tar.gz
tar xf distribute-0.6.27.tar.gz
cd distribute-0.6.27
python2.7 setup.py install
/usr/local/bin/easy_install-2.7 virtualenv
you saved my day. Thanks!
Thanks! It's really helpful!