linux 安裝python3

來源:互聯網
上載者:User

linux下python3 的安裝 儘管我的unbuntu 10.11版本已經預設更新了python的安裝,但這裡還是重新介紹一下如何在linux下安裝 python。在網上也有一些安裝教程。
摘來如下
1.下載原始碼 http://www.python.org/ftp/python/2.5.2/Python-2.5.2.tar.bz2  
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.

  >>>

  OK!問題解決!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.