CentOS升級Python到2.7版本
阿新 • • 發佈:2019-02-01
檢視python的版本
1 |
python
-V |
Python 2.4.3
1 |
yum
-y install gcc |
1 |
wget
http://python.org/ ftp /python/2.7.2/Python-2.7.2. tar .bz2 |
1 |
tar -jxvf
Python-2.7.2. tar .bz2 |
1 |
cd Python-2.7.2 |
1 |
./configure |
2 |
make all |
3 |
make install |
4 |
make clean |
5 |
make distclean |
1 |
/usr/ local /bin/python2.7
-V |
正常情況下即使python2.7安裝成功後,系統預設指向的python仍然是2.4.3版本,考慮到yum是基於python2.4.3才能正常工作,不敢輕易解除安裝。
如何實現將系統預設的python指向到2.7版本呢?
1 |
mv /usr/bin/python
/usr/bin/python2.4 |
2 |
ln -s
/usr/ local /bin/python2.7
/usr/bin/python |
1 |
python
-V |
1 |
vi /usr/bin/yum |
1 |
#!/usr/bin/python |
1 |
#!/usr/bin/python2.4 |