歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux教程 >> CentOS5下Python-2.5安裝筆記

CentOS5下Python-2.5安裝筆記

日期:2017/2/28 16:18:50   编辑:Linux教程

1、己安裝的老版本

[root@ha01 Python-2.5.2]# rpm -qa python
python-2.4.3-27.el5

2、安裝新版本Python2.5

[root@ha01 local]# tar -jxvf Python-2.5.2.tar.bz2

[root@ha01 local]# cd Python-2.5.2
[root@ha01 Python-2.5.2]# ./configure

[root@ha01 Python-2.5.2]# make & make install

3、覆蓋老版本Python

[root@ha01 Python-2.5.2]# cd /usr/bin/
[root@ha01 bin]# rm -rf python
[root@ha01 bin]# ln -s /usr/local/Python-2.5.2/python ./

4、安裝完成

[root@ha01 /]# python
Python 2.5.2 (r252:60911, Apr 2 2011, 11:35:01)
[GCC 4.1.2 20080704 (Red Hat 4.1.2-48)] on linux2
Type "help", "copyright", "credits" or "license" for more information.

Copyright © Linux教程網 All Rights Reserved