天天看點

CentOS 6.4 安裝python2.7/mysqldb/ipython

安裝開發工具包:

yum groupinstall "Development tools"

yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel

安裝Python2.7:

wget http://python.org/ftp/python/2.7.3/Python-2.7.3.tar.bz2

tar -xf Python-2.7.3.tar.bz2 & cd Python-*

make & make altinstall

安裝distribute:

wget http://pypi.python.org/packages/source/d/distribute/distribute-0.6.35.tar.gz

tar xf distribute-0.6.35.tar.gz & cd distribute*

python2.7 setup.py install

安裝ipython:

easy_install-2.7 ipython

安裝MySQLdb:

yum -y install mysql-devel

easy_install-2.7 MySQL-python

本文轉自 li_qinshan 51CTO部落格,原文連結:http://blog.51cto.com/share/1269510