Linux下python升級

來源:互聯網
上載者:User

原文連結:http://blog.pmal.net/2011/03/02/linux_python_upgrade/

最近在學習Python,但是系統內建的python2.4.3感覺太舊了
官網上都升級到3.2了
我到官網上選擇了升級到2.7,因為我的教材支援到2.5以上,所以3.2還是太新了,升級到2.7差不多了。
下載原始碼

1 wget http://www.python.org/ftp/python/2.7.1/Python-2.7.1.tgz

我的軟體都下載在/data0/software/下,
於是到這個目錄下,解壓

1 tar -zxvf Python-2.7.1.tgz
2 cd Python-2.7.1

開始編譯吧

1 mkdir /usr/local/python27

我建立了一個目錄,把原來
在編譯的時候這樣

1 ./configure --prefix=/usr/local/python27
2 make
3 make install

此時還沒有覆蓋老版本
再將原來

1 /usr/bin

下面的python連結全部刪除掉或者改為別的名字

1 mv /usr/bin/python /usr/bin/python_old

再輸入

1 ln -s /usr/local/python27/bin/python /usr/bin/

這個時候輸入

1 python

就會顯示出下面的代碼:

1 Python 2.7.1 (r271:86832, Mar  2 2011, 12:06:34)
2 [GCC 4.1.2 20080704 (Red Hat 4.1.2-48)] on linux2
3 Type "help",
"copyright", "credits"
or "license"
for
more information.
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.