Ubuntu 20.04 LTS默認安裝的是python3,如果需要使用python2.7,需要自己進行安裝。
一、啟用Universe倉庫
一般情況下其實應該是已經啟用了,但是還是記錄一下手動添加的方法
sudo apt-add-repository universe
sudo apt update
二、安裝python2.7
使用以下命令安裝python2.7
sudo apt install python2-minimal
安裝完以後查看python版本,以下兩種方法都可以
python2 -V
python2 --version
輸出結果為:
在這裡插入圖片描述
三、切換默認python版本
到這一步如果使用python命令還是會提示找不到命令,所以需要增加一組新的系統命令鏈接符:
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 1
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 2
返回結果如下:
在這裡插入圖片描述
然後檢查python默認版本,如果是顯示python3,那麼需要進行版本切換:
sudo update-alternatives --config python
1
在這裡插入圖片描述
上圖可以看出python命令默認是鏈接python3,那麼只需要輸入最左邊的序號(例如我的系統裡顯示python2的序號是1),就自動切換成python2了。
在這裡插入圖片描述
update-alternatives相關知識可以參考:https://blog.csdn.net/JasonDing1354/article/details/50470109
四、安裝pip2
sudo apt update
sudo apt install curl
curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output get-pip.py
sudo python2 get-pip.py
可以發現pip和pip2的版本返回結果都是基於python 2.7
在這裡插入圖片描述
卸載pip的命令為:
sudo apt remove python2-minimal
五、參考鏈接:
https://www.how2shout.com/linux/how-to-install-python-2-7-on-ubuntu-20-04-lts/
pycharm: connection to Python
Project IntroductionOnline clo
python3.6 And above have been