美文网首页
Centos6.8上源码安装Python2.7.13

Centos6.8上源码安装Python2.7.13

作者: Alex_Honnold | 来源:发表于2017-08-10 15:20 被阅读0次

    准备环境安装包:
    python2.7:[下载地址]
    distribute: [下载地址]
    setuptools:[下载地址]
    pip: [下载地址]

    安装编译器:

    yum install gcc gcc-c++ -y
    

    安装依赖包:

    yum install openssl-devel -y #安装ansible会用到
    yum install zlib zlib-devel -y  #安装setuptools会用到
    

    安装Python2.7.13:

    [root@localhost ~]# tar -xvf Python-2.7.13.tar 
    [root@localhost ~]# cd Python-2.7.13
    [root@localhost Python-2.7.13]# ./configure
    [root@localhost Python-2.7.13]# make
    [root@localhost Python-2.7.13]# make install
    

    非常重要:
    代替make install的命令,使用make altinstall (altinstall功能说明)

    个人总结说明:
    使用make install,会覆盖系统默认安装的Python2.6版本。即用make install命令执行完,输入python,出现下图:

    原来的Python2.6不在了,是不是很神奇。如果想要原来的Python2.6存在,则需要使用altinstall。
    使用make altinstall安装,输入python,出现下图:

    python重要目录结构说明:

    在/usr/bin目录下(这是系统默认Python):
    [root@localhost bin]# ls -trl py*
    -rwxr-xr-x. 1 root root  188 8月  21 2010 pygtk-demo
    -rwxr-xr-x. 1 root root   78 7月  24 2015 pydoc
    -rwxr-xr-x. 2 root root 4864 7月  24 2015 python2.6
    -rwxr-xr-x. 2 root root 4864 7月  24 2015 python
    lrwxrwxrwx. 1 root root    6 7月  19 17:47 python2 -> python
    
    在/usr/local/bin目录下(这是Python源码安装的默认安装路径):
    [root@localhost bin]# ls -trl py*
    -rwxr-xr-x. 1 root root     101 7月  21 18:39 2to3
    -rwxr-xr-x. 1 root root      99 7月  21 18:39 idle
    -rwxr-xr-x. 1 root root      84 7月  21 18:39 pydoc
    lrwxrwxrwx. 1 root root       7 7月  21 18:41 python -> python2
    lrwxrwxrwx. 1 root root       9 7月  21 18:41 python2 -> python2.7
    -rwxr-xr-x. 1 root root 6261576 7月  21 18:39 python2.7
    -rwxr-xr-x. 1 root root    1687 7月  21 18:41 python2.7-config
    lrwxrwxrwx. 1 root root      16 7月  21 18:41 python2-config -> python2.7-config
    lrwxrwxrwx. 1 root root      14 7月  21 18:41 python-config -> python2-config
    -rwxr-xr-x. 1 root root   18547 7月  21 18:39 smtpd.py
    
    
    在/usr/local/lib目录下(这是Python源码安装的默认库文件目录):
    drwxr-xr-x. 28 root root    20480 7月  21 18:41 python2.7
    

    添加文件链接(实现输入python,是2.7.13版本):

    cd /usr/local/bin
    cp python2.7 /usr/bin/
    cd /usr/bin
    rm python
    rm python2
    ln -s python2.7 python
    ln -s python2.7 python2
    

    安装完后,使用yum出现的问题:

    升级完python到2.7之后,会出现这样的问题:

    使用make install则不出现,而用make altinstall则会出现。如果有谁知道的,请告诉我下原因,谢谢

    解决办法:

    cd /usr/bin
    vi yum 
    把第一行#!/usr/bin/python改成#!/usr/bin/python2.6
    

    安装包管理工具:

    1.安装 setuptools:

    [root@localhost ~]# unzip setuptools-36.2.7.zip
    [root@localhost ~]# cd setuptools-36.2.7
    [root@localhost setuptools-36.2.7]# python setup.py install
    #用easy_install命令测试是否完成安装
    [root@localhost setuptools-36.2.7]# easy_install
    error: No urls, filenames, or requirements specified (see --help)
    

    2.安装pip:

    方式一:
    [root@localhost ~]# easy_install pip
    方式二:
    [root@localhost ~]# tar -xvf pip-9.0.1.tar.gz
    [root@localhost ~]# cd pip-9.0.1
    [root@localhost pip-9.0.1]# python setup.py install
    

    为什么升级到2.7用setuptools,而升级到3.6用distribute:
    http://blog.csdn.net/ichuzhen/article/details/24640299

    相关文章

      网友评论

          本文标题:Centos6.8上源码安装Python2.7.13

          本文链接:https://www.haomeiwen.com/subject/mfuhrxtx.html