回覆列表
-
1 # 三邵爺的夢囈
-
2 # 小紅的甜心
linux系統中安裝python包括以下三個步驟:
1、下載原始碼
2、安裝
$ tar –jxvf Python-2.5.2.tar.bz2
$ cd Python-2.5.2
$ ./configure
$ make
$ make install
3、測試
在命令列下輸入python,出現python直譯器即表示已經正確安裝。
在suse10或rhel5(es5)下系統預設已經裝了python但版本是2.4.x;本次安裝後在shell中輸入
#python
會發現顯示結果:
# python
Python 2.4.3 (#1, Dec 11 2006, 11:38:52)
[GCC 4.1.1 20061130 (Red Hat 4.1.1-43)] on linux2
Type “help”, “copyright”, “credits” or “license” for more information.
>>>
版本還是2.4.x的
解決辦法:
#cd /usr/bin
#ll |grep python //檢視該目錄下python
#rm -rf python
#ln -s PREFIX/Python-2.5.2/python ./python //PREFIX為你解壓python的目錄
#python
# python
Python 2.5.2 (#1, Dec 11 2006, 11:38:52)
[GCC 4.1.1 20061130 (Red Hat 4.1.1-43)] on linux2
Type “help”, “copyright”, “credits” or “license” for more information.
>>>
安裝測試完畢。
安裝的話可以用線上安裝的方式,如 apt-get install的方式安裝
或者下載python 安裝包,然後用手動的方式安裝