Last active
August 29, 2015 13:56
-
-
Save zagfai/9087397 to your computer and use it in GitHub Desktop.
CentOS release 6.3 (Final) INSTALL python 2.7 env including pip mysqldb and do the links.
This file contains 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 characters
#!/bin/bash | |
# system packages ============================================================= | |
yum -y install python-devel openssl openssl-devel gcc sqlite sqlite-devel mysql-devel libxml2-devel libxslt-devel | |
# Python ====================================================================== | |
wget http://www.python.org/ftp/python/2.7.6/Python-2.7.6.tgz | |
tar -xzf Python-2.7.6.tgz | |
cd Python-2.7.6 | |
./configure --prefix=/usr/local/python2.7 --with-threads --enable-shared | |
make && make altinstall | |
ln -s /usr/local/python2.7/lib/libpython2.7.so /usr/lib | |
ln -s /usr/local/python2.7/lib/libpython2.7.so.1.0 /usr/lib | |
ln -s /usr/local/python2.7/bin/python2.7 /usr/bin | |
ln -s /usr/bin/python2.7 /usr/bin/python27 | |
/sbin/ldconfig -v | |
# easyinstall and pip ========================================================= | |
wget http://pypi.python.org/packages/source/d/distribute/distribute-0.6.49.tar.gz --no-check-certificate | |
tar xf distribute-0.6.49.tar.gz | |
cd distribute-0.6.49 | |
python2.7 setup.py install | |
/usr/local/python2.7/bin/easy_install pip | |
ln -s /usr/local/python2.7/bin/pip /usr/bin | |
# preinstall packages ========================================================= | |
pip install mysql-python ipython requests readline beautifulsoup4 html5lib jinja2 | |
ln -s /usr/local/python2.7/bin/ipython /usr/bin | |
wget https://github.com/zagfai/webtul/archive/v0.31.zip | |
unzip v0.31 | |
cd webtul-0.31 && sudo python2.7 setup.py install | |
# Done | |
echo rm dirs............. | |
cd ../../.. | |
rm Python-2.7.6 Python-2.7.6.tgz -r | |
echo FinishInstall!!!!!!!!!! | |
python2.7 -V |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment