Python的安裝及升級

  • 2020 年 1 月 13 日
  • 筆記

安裝

官網:www.python.org

Window上需要自己安裝,從官網下載即可。

Linux都已已發行版本都已經安裝。

如果是windows環境,下載portable Python,綠色直接使用。

Python版本查看

[root@nfs-server bin]# python -V  Python 2.6.6

CentOS6.6下Python2.6.6升級到2.7.3的步驟:

cd /home/myself/tools

wget http://python.org/ftp/python/2.7.3/Python-2.7.3.tar.bz2

tar -jxvf Python-2.7.3.tar.bz2

cd Python-2.7.3

./configure

make all 

make install 

make clean 

make distclean

但是使用python -V查看得時候還是2.6.6,因此需要將系統默認的python指向到2.7版本:

mv /usr/bin/python /usr/bin/python2.6.6

ln -s /usr/local/bin/python2.7 /usr/bin/python

然後通過python -V查看就會顯示為2.7.3了。

此時yum不能正常工作,解決此問題:

vim /usr/bin/yum

更改文件頭部:

#!/usr/bin/python

改為:

#!/usr/bin/python2.6.6

一切OK!

第一個Python程式

[root@nfs-server ~]# python  Python 2.7.3 (default, Mar 27 2016, 02:25:08)   [GCC 4.4.7 20120313 (Red Hat 4.4.7-16)] on linux2  Type "help", "copyright", "credits" or "license" for more information.  >>> print "hello world!"          hello world!