Home >Backend Development >Python Tutorial >centos 下面安装python2.7 +pip +mysqld

centos 下面安装python2.7 +pip +mysqld

WBOY
WBOYOriginal
2016-06-10 15:19:001147browse

python2.7

复制代码 代码如下:

wget http://www.python.org/ftp/python/2.7.6/Python-2.7.6.tar.xz
yum install xz-libs
xz -d Python-2.7.6.tar.xz
ls
tar -xvf Python-2.7.6.tar
cd Python-2.7.6
yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline
LDFLAGS="-Wl,-rpath /usr/local/lib"
 vim /etc/ld.so.conf
 ./configure --prefix=/usr/local --enable-unicode=ucs4 --enable-shared LDFLAGS="-Wl,-rpath /usr/local/lib"
 make clean
 make && make altinstall

pip

复制代码 代码如下:

wget --no-check-certificate https://pypi.python.org/packages/source/s/setuptools/setuptools-1.4.2.tar.gz
tar -vxf setuptools-1.4.2.tar.gz
cd setuptools-1.4.2
python2.7 setup.py install
easy_install-2.7 pip

mysqldb

复制代码 代码如下:

yum -y install MySQL-python
yum -y install mysql-devel
easy_install-2.7 MySQL-python
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn