您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關Ubuntu下如何安裝卸載python3.8的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
在 Ubuntu 16.04 中,python3 的默認版本為 3.5:
$ python3 -V Python 3.5.2
本文以在 Ubuntu 16.04 中安裝為例,方法同樣適用于 Ubuntu 18.04 。
Ubuntu 官方 apt 庫中還未收錄 python 3.8,這里使用 deadsnakes PPA 庫安裝。
1.1. 安裝依賴包
$ sudo apt-get update $ sudo apt-get install software-properties-common
1.2. 添加 deadsnakes PPA 源
$ sudo add-apt-repository ppa:deadsnakes/ppa Press [ENTER] to continue or Ctrl-c to cancel adding it.
1.3. 安裝 python 3.8
$ sudo apt-get update $ sudo apt-get install python3.8 $ python3.8 -V Python 3.8.2
修改默認 python3 會導致打不開 Terminal 等各種問題,建議不要修改。解決方法見 Ubuntu16.04TLS 中終端(Terminal)無法打開的解決辦法
2.1. 將 python 各版本添加到 update-alternatives
$ which python3.8 /usr/bin/python3.8 $ sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.8 1 $ which python3.5 /usr/bin/python3.5 $ sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.5 2
2.2. 配置 python3 默認指向 python3.8
$ sudo update-alternatives --config python3 There are 2 choices for the alternative python3 (providing /usr/bin/python3). Selection Path Priority Status ------------------------------------------------------------ * 0 /usr/bin/python3.5 2 auto mode 1 /usr/bin/python3.5 2 manual mode 2 /usr/bin/python3.8 1 manual mode Press <enter> to keep the current choice[*], or type selection number: 2
選擇/輸入 2, 回車。
2.3 測試 python 版本
$ python3 -V Python 3.8.2
sudo apt-get remove python3.8
sudo apt-get remove --auto-remove python3.8
sudo apt-get purge python3.8 or sudo apt-get purge --auto-remove python3.8
注釋:
此方法卸載python比較徹底,所以適合更換python版本時使用。
——對于既想完全卸載python,又無法接受完全卸載后某些python組件無法使用的童鞋,請慎重!
感謝各位的閱讀!關于“Ubuntu下如何安裝卸載python3.8”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。