主頁 > 知識庫 > Ubuntu下安裝卸載python3.8的過程

Ubuntu下安裝卸載python3.8的過程

熱門標(biāo)簽:萊蕪電信外呼系統(tǒng) 怎么辦理400客服電話 鶴壁手機自動外呼系統(tǒng)違法嗎 銀川電話機器人電話 企業(yè)微信地圖標(biāo)注 地圖標(biāo)注多個 B52系統(tǒng)電梯外呼顯示E7 沈陽防封電銷電話卡 高德地圖標(biāo)注收入咋樣

一、Python 3.8 安裝

在 Ubuntu 16.04 中,python3 的默認(rèn)版本為 3.5:

$ python3 -V
Python 3.5.2

本文以在 Ubuntu 16.04 中安裝為例,方法同樣適用于 Ubuntu 18.04 。

1.通過 Apt 安裝Python3.8

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

2.配置 python3.8 為系統(tǒng)默認(rèn) python3

修改默認(rèn) python3 會導(dǎo)致打不開 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 默認(rèn)指向 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

二、卸載python3.8

 1、卸載python3.8

sudo apt-get remove python3.8

2、卸載python3.8及其依賴

sudo apt-get remove --auto-remove python3.8

3、清除python3.8

sudo apt-get purge python3.8
or
sudo apt-get purge --auto-remove python3.8

注釋:

此方法卸載python比較徹底,所以適合更換python版本時使用。

——對于既想完全卸載python,又無法接受完全卸載后某些python組件無法使用的童鞋,請慎重!

參考鏈接:

[1] 如何將 Ubuntu 16 和 18 上的 python 升級到最新 3.8 版

[2] Ubuntu安裝Python3 和卸載

到此這篇關(guān)于Ubuntu下python3.8的安裝與卸載的文章就介紹到這了,更多相關(guān)Ubuntu python3.8安裝卸載內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • 將 Ubuntu 16 和 18 上的 python 升級到最新 python3.8 的方法教程
  • linux ubuntu中安裝、卸載和刪除python-igraph的方法教程
  • Ubuntu16安裝Python3.9的實現(xiàn)步驟
  • Ubuntu20.04安裝Python3的虛擬環(huán)境教程詳解
  • 給ubuntu18安裝python3.7的詳細(xì)教程
  • 詳解Ubuntu16.04安裝Python3.7及其pip3并切換為默認(rèn)版本

標(biāo)簽:湘西 葫蘆島 銀川 呼倫貝爾 安慶 三亞 呼倫貝爾 烏魯木齊

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Ubuntu下安裝卸載python3.8的過程》,本文關(guān)鍵詞  Ubuntu,下,安裝,卸載,python3.8,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Ubuntu下安裝卸載python3.8的過程》相關(guān)的同類信息!
  • 本頁收集關(guān)于Ubuntu下安裝卸載python3.8的過程的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章