`

在CentOS 5.3源码安装Python 2.7及模块

阅读更多

      最近需要在服务器上建立一个Python环境,第一次做,故做些记录.

      服务器采用的系统为CentOS release 5.3 (Final),采用源码安装Python 2.7.3.


      1.Python

      软件包版本: Python-2.7.3

      下载地址: http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tar.bz2


      安装过程:

      a.将软件包至于合适的目录解包.

      此处在/usr/local/src中操作.执行命令:

tar -xjf Python-2.7.3.tar.bz2
 

      b.配置,编译与安装

      安装过程中没有做特别的要求,所以简单执行如下的命令:

./configure
make
make install

       至此,完成Python安装.


      2.安装setuptools和easy_install

      a.获取脚本ez_setup.py.此脚本将帮助获取setuptools的最新版本,并自动安装easy_install.

      执行:

curl http://peak.telecommunity.com/dist/ez_setup.py > ez_setup.py

 

      b.运行脚本ez_setup.py.需要注意的是,运行此脚本时要确定一起工作的Python版本,必要时直接指明是哪个版本.

      执行:

python ez_setup.py

      得到类似下面的输出:

Downloading http://pypi.python.org/packages/2.7/s/setuptools/setuptools-0.6c11-py2.7.egg
Processing setuptools-0.6c11-py2.7.egg
Copying setuptools-0.6c11-py2.7.egg to /usr/local/lib/python2.7/site-packages
Adding setuptools 0.6c11 to easy-install.pth file
Installing easy_install script to /usr/local/bin
Installing easy_install-2.7 script to /usr/local/bin

Installed /usr/local/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg
Processing dependencies for setuptools==0.6c11
Finished processing dependencies for setuptools==0.6c11

 

      此时,查看下目录/usr/local/bin,会见到下面两个文件:

       /usr/local/bin/easy_install

       /usr/local/bin/easy_install-2.7

 

      3.安装几个模块

      下面安装几个需要的模块,包括: jianfan, mysql-python.

      安装jianfan,执行:

easy_install jianfan

       得到类似输出:

Searching for jianfan
Reading http://pypi.python.org/simple/jianfan/
Reading http://code.google.com/p/python-jianfan/
Best match: jianfan 0.0.1
Downloading http://python-jianfan.googlecode.com/files/jianfan-0.0.1.tar.gz
Processing jianfan-0.0.1.tar.gz
Running jianfan-0.0.1/setup.py -q bdist_egg --dist-dir /tmp/easy_install-hLd3H5/jianfan-0.0.1/egg-dist-tmp-vtBk1J
zip_safe flag not set; analyzing archive contents...
Adding jianfan 0.0.1 to easy-install.pth file

Installed /usr/local/lib/python2.7/site-packages/jianfan-0.0.1-py2.7.egg
Processing dependencies for jianfan
Finished processing dependencies for jianfan

 

      安装mysql-python,执行:

easy_install mysql-python

       得到类似输出:

Searching for mysql-python
Reading http://pypi.python.org/simple/mysql-python/
Reading http://sourceforge.net/projects/mysql-python/
Reading http://sourceforge.net/projects/mysql-python
Best match: MySQL-python 1.2.4c1
Downloading http://pypi.python.org/packages/source/M/MySQL-python/MySQL-python-1.2.4c1.zip#md5=a05925412cd824104da064db6a889613
Processing MySQL-python-1.2.4c1.zip
Running MySQL-python-1.2.4c1/setup.py -q bdist_egg --dist-dir /tmp/easy_install-StJ2_u/MySQL-python-1.2.4c1/egg-dist-tmp-1vXEb1
Downloading http://pypi.python.org/packages/source/d/distribute/distribute-0.6.28.tar.gz
Extracting in /tmp/easy_install-StJ2_u/MySQL-python-1.2.4c1/temp/tmp_Z0Yyi
Now working in /tmp/easy_install-StJ2_u/MySQL-python-1.2.4c1/temp/tmp_Z0Yyi/distribute-0.6.28
Building a Distribute egg in /tmp/easy_install-StJ2_u/MySQL-python-1.2.4c1
/tmp/easy_install-StJ2_u/MySQL-python-1.2.4c1/distribute-0.6.28-py2.7.egg
In file included from /usr/include/mysql/my_config.h:16,
                 from _mysql.c:44:
/usr/include/mysql/my_config_i386.h:1053:1: warning: "HAVE_WCSCOLL" redefined
In file included from /usr/local/include/python2.7/Python.h:8,
                 from _mysql.c:29:
/usr/local/include/python2.7/pyconfig.h:890:1: warning: this is the location of the previous definition
zip_safe flag not set; analyzing archive contents...
Adding MySQL-python 1.2.4c1 to easy-install.pth file

Installed /usr/local/lib/python2.7/site-packages/MySQL_python-1.2.4c1-py2.7-linux-i686.egg
Processing dependencies for mysql-python
Finished processing dependencies for mysql-python

 

      在安装mysql-python,可能会遇到系统缺少和MySQL相关的必要包;此时可以使用yum进行安装.

         执行:

yum install mysql-devel

 

      验证看看刚才的两个模块是否已安装成功,进入python,使用import试试.比如在python交互式shell中,执行:

      import MySQLdb

      如果没有报错,则说明安装已成功.

分享到:
评论

相关推荐

    CentOS5.3系统

    - **软件安装**:利用Yum或RPM包进行软件安装,也可以通过源代码编译安装。 - **防火墙配置**:使用iptables配置防火墙规则,保护系统免受外部攻击。 - **虚拟机管理**:通过KVM或Xen工具创建、管理虚拟机,实现资源...

    Centos5.3下搭建OpenERP平台.doc

    在CentOS 5.3操作系统上搭建OpenERP(现称Odoo)5.0.15平台是一项技术性的工作,需要遵循一系列步骤来确保环境的正确配置。以下是一份详细的指南,涵盖了从系统升级到安装必备组件的整个过程: 1. **系统升级**: ...

    linux安装python 3.6.5(含安装包)

    在Linux系统中安装Python 3.6.5是开发者经常遇到的任务,特别是在需要特定Python版本的项目中。这里我们将详细探讨如何在Linux环境下正确安装Python 3.6.5,包括下载、编译和配置环境变量等关键步骤。 首先,确保你...

    Python-3.5.2.tgz源码安装

    现在,我们将详细探讨如何在Linux环境下进行Python 3.5.2的源码安装。 首先,确保你的系统已经安装了必要的依赖库,例如GCC编译器、make工具以及一些开发头文件。对于大多数Linux发行版,你可以通过运行以下命令来...

    Python安装之(linux mac windows)

    - 在安装过程中勾选“Add Python to PATH”选项,这将自动配置环境变量,使得可以在命令行工具中直接使用Python命令。 3. **验证安装**: - 安装完成后,在命令提示符窗口中输入`python --version`来验证Python...

    AccessControl-5.3-cp38-cp38_x86_64.manylinux1_x86_64.whl

    使用Wheel文件可以避免在安装时编译源代码,从而加快安装速度并减少依赖问题。 在压缩包子文件的文件名称列表中,我们看到"使用说明.txt",这通常包含有关如何安装和使用该库的指南,以及可能的注意事项和限制。另...

    ideep:英特尔:registered:Chaining *优化,一种Chainer模块,使用MKL-DNN提供诸如numpy的API和DNN加速

    英特尔:registered:Chainer优化* 用于Intel体系结构的Chainer后端,一个Chainer模块,使用MKL-DNN... 如果您使用旧的setuptools ,请升级它: pip install -U setuptools从源代码安装python包: CentOS的: git subm

    WINDOWS下Linux系统的硬盘安装步骤.pdf

    - 在安装过程中,根据提示选择安装类型(通常选择"标准"或"最小化"),并确保勾选必要的开发工具,如GCC、Perl、Python等,以便后续开发需要。 2. **安装Eclipse IDE**: - 下载JRE,这是Eclipse运行的基础。访问...

    Hue安装详细介绍文档

    Hue是一个开源的Web界面,用于Apache Hadoop,它能够简化在Hadoop集群上的文件、任务及作业的管理。Hue支持多种组件,包括Hive、HBase、ZooKeeper、Oozie、Pig、Sqoop等。本知识点将详细介绍Hue的安装过程,包括环境...

Global site tag (gtag.js) - Google Analytics