導航:首頁 > 版本升級 > suse升級python3

suse升級python3

發布時間:2024-06-13 14:28:59

『壹』 linux 上如何安裝並切換最新版本的 Python 3.6

Python 是 Linux 中一種最流行的編程語言。它被寫成了各種工具和庫。除此之外,Python 在開發者之間很流行因為它非常簡單,並且實際很容易掌握。如果你安裝了 Linux 系統,正在學習 Python 並想要使用最新的版本的話,那麼這篇文章就是為你而寫的。現在我已經安裝好了 Linux Mint 18。默認安裝的版本是 2.7 和 3.5。你可以用這個命令檢查:
$ python -V
$ python2 -V
$ python3 -V
安裝最新的 Python 3.6 到 Linux 中:
$ sudo add-apt-repository ppa:jonathonf/python-3.6
$ sudo apt update
$ sudo apt install python3.6
檢查已安裝的 Python 3.6 版本
$ python3.6-V
請注意舊版本仍然還在,它仍然可以通過 python3 可用,新的版本可以通過命令 python3.6。如果你想要默認使用這個版本而不是 3.5 運行所有的程序,這有個工具叫 update-alternatives。但是如果你嘗試獲取可能的列表,我們會得到錯誤:

Python 3.6 - install latest version into Linux Mint
這是正常的,你首先需要為那個問題設置文件,因為維護者沒有設置這個:
$ sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.51
$ sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.62
現在再次查看:
$ update-alternatives --list python3

Python 3.6 - install latest version into Linux Mint
現在我們選擇需要的版本並按需切換。對於設置使用配置命令:
$ sudo update-alternatives --config python3

Python 3.6 - install latest version into Linux Mint
在提示符中,你需要指定默認使用的編號。
選擇版本時要小心,不要去動 python(python2),只使用我說的 python3,Python 2.7 編寫了各種系統工具,如果你嘗試用錯誤的解釋器版本運行它們,可能就不會工作。

『貳』 如何在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」, 「right」, 「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」, 「right」, 「credits」 or 「license」 for more information.

>>>

OK!問題解決!

閱讀全文

與suse升級python3相關的資料

熱點內容
怎麼關閉網路喚醒 瀏覽:894
孤單的微信頭像動漫 瀏覽:305
有沒有哪個大學教編程 瀏覽:851
wordpress後台添加廣告位置 瀏覽:491
怎樣快速修改qq密碼 瀏覽:145
怎麼清除惡意攻擊網站 瀏覽:511
qq頭像女生側顏馬尾 瀏覽:718
蘋果自己的文件格式 瀏覽:85
放在c盤的app如何刪除 瀏覽:912
華為手機克隆後文件放在哪裡 瀏覽:631
清樂網站製作需要多少人 瀏覽:294
網路游戲系統 瀏覽:933
java如何寫框架 瀏覽:423
微信接收文件改變儲存路徑 瀏覽:51
新加坡蘋果7手機價格 瀏覽:216
fortran可以處理哪些格式文件 瀏覽:326
還有哪個app可以看音樂節 瀏覽:719
word2010設置奇偶頁碼 瀏覽:43
文件打開方式選擇word是亂碼 瀏覽:277
word怎麼插入封面 瀏覽:727

友情鏈接