centos Python2.6 升级到2.7
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos Python2.6 升级到2.7相关的知识,希望对你有一定的参考价值。
需求:
centos 6.x 系统默认Python 版本都是2.6,实际生产环境中需要用到Python 2.7.x
Python 2.7 下载地址
[[email protected] package]# wget https://www.python.org/ftp/python/2.7.6/Python-2.7.6.tgz
[[email protected] package]# tar -xf Python-2.7.6.tgz
[[email protected] package]# cd Python-2.7.6
[[email protected] Python-2.7.6]# ./configure --prefix=/usr/local/
[[email protected] Python-2.7.6]# make && make install
[[email protected] Python-2.7.6]# python -V
Python 2.7.6
这里2.7.6的版本没有遇到网上所说的yum 用不了的情况
以上是关于centos Python2.6 升级到2.7的主要内容,如果未能解决你的问题,请参考以下文章