VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > Python基础教程 >
  • 升级python到最新2.7.x -- linux

python2.7是2.X的最后一个版本,同时她也加入了一部分3.X的新特性。并且具有更好的性能,修改多个bug。所以决定升级到最新的2.7版,我的目前的版本是2.4.3

查看当前python版本

1
2
3
4
5
[root@pythontab.com ~]# python
Python 2.4.3 (#1, Sep  3 2009, 15:37:37) 
[GCC 4.1.2 20080704 (Red Hat 4.1.2-46)] on linux2
Type "help""copyright""credits" or "license" for more information.
>>>

1.最新版本python下载安装

下载新版本的python

1
[root@pythontab.com ~]# wget http://python.org/ftp/python/2.7.8/Python-2.7.8.tgz

解压缩 以及编译

1
2
3
4
[root@pythontab.com ~]# tar xvf Python-2.7.8.tar.bz2 
[root@pythontab.com Python-2.7.8]# ./configure --prefix=/usr/local/python27
[root@pythontab.com Python-2.7.8]# make
[root@pythontab.com Python-2.7.8]# make install

最新2.7.8版本的python已经安装到了系统中,但是还没有完成

再次查看python版本,发现依然是2.4.3版本

1
2
3
4
5
[root@pythontab.com ~]# python
Python 2.4.3 (#1, Sep  3 2009, 15:37:37) 
[GCC 4.1.2 20080704 (Red Hat 4.1.2-46)] on linux2
Type "help""copyright""credits" or "license" for more information.
>>>

2. python多版本共存解决

下面我们来解决这个问题

把原来的python重命名成python_old,注意不要删除它,还有用,下面会说到

1
[root@pythontab.com Python-2.7.8]# mv /usr/bin/python /usr/bin/python_old

建立新的python的软链接

1
[root@pythontab.com Python-2.7.8]# ln -s /usr/local/python27/bin/python /usr/bin/

这时候我们再查看一下版本,发现正常啦!

1
2
3
4
5
[root@pythontab.com Python-2.7.8]# python
Python 2.7.8 (default, Dec  3 2014, 10:51:34) 
[GCC 4.1.2 20080704 (Red Hat 4.1.2-55)] on linux2
Type "help""copyright""credits" or "license" for more information.
>>>

相关教程