安装介质

版本:Python-2.7.12.tgz
下载:https://www.python.org/ftp/python

安装Python

1. 解压

  1. cd /share
  2. tar -zxvf Python-2.7.12.tgz -C /opt/module/

2. 指定安装路径

  1. cd /opt/module/Python-2.7.12
  2. ./configure --prefix=/usr/local/python2

3. 编译安装

  1. sudo make
  2. sudo make install

4. 指定软链接

删除python默认的指向版本,并创建链接将python指向下载的版本

  1. sudo rm -f /usr/bin/python
  2. sudo ln -s /usr/local/python2/bin/python /usr/bin/python

5. 查看版本

  1. cd /opt/module/Python-2.7.12
  2. python -V