Ubuntu更改預設python版本的方法
阿新 • • 發佈:2018-12-18
一般Ubuntu預設的Python版本都為2.x, 如何改變Python的預設版本呢?
1.檢視系統中都有哪些 Python 的二進位制檔案可供使用。
ls /usr/bin/python* /usr/bin/python /usr/bin/python2-config /usr/bin/python2-jsonpointer /usr/bin/python3 /usr/bin/python3.6 /usr/bin/python3.6m-config /usr/bin/python-config /usr/bin/python2-jsondiff /usr/bin/python2.7 /usr/bin/python3.5 /usr/bin/python3.6-config /usr/bin/python3m /usr/bin/python2 /usr/bin/python2-jsonpatch /usr/bin/python2.7-config /usr/bin/python3.5m /usr/bin/python3.6m
2.檢視版本
python -V
或
python --version
2.基於使用者修改 Python 版本:
想要為某個特定使用者修改 Python 版本,只需要在其 home 目錄下建立一個 alias(別名) 即可。開啟該使用者的 ~/.bashrc檔案,新增新的別名資訊來修改預設使用的 Python 版本。
alias python= '/usr/bin/python3.4'
一旦完成以上操作,重新登入或者重新載入 .bashrc 檔案,使操作生效。
. ~/.bashrc
- 檢查當前的 Python 版本。
python --version
3.在系統級修改 Python 版本
我們可以使用 update-alternatives 來為整個系統更改 Python 版本。以 root 身份登入,首先羅列出所有可用的 python 替代版本資訊:
update-alternatives --list python
update-alternatives: error: no alternatives for python
如果出現以上所示的錯誤資訊,則表示 Python 的替代版本尚未被 update-alternatives 命令識別。想解決這個問題,我們需要更新一下替代列表,將 python2.7 和 python3.6 放入其中。
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2.7 1
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.6 2
–install 選項使用了多個引數用於建立符號連結。最後一個引數指定了此選項的優先順序,如果我們沒有手動來設定替代選項,那麼具有最高優先順序的選項就會被選中。這個例子中,我們為 /usr/bin/python3.4 設定的優先順序為2,所以update-alternatives 命令會自動將它設定為預設 Python 版本。
- 檢視版本
python --version
- 接下來,我們再次列出可用的 Python 替代版本。
update-alternatives --list python
- 現在開始,我們就可以使用下方的命令隨時在列出的 Python 替代版本中任意切換了。
sudo update-alternatives --config python
- 檢視版本
python --version
4.移除替代版本
一旦我們的系統中不再存在某個 Python 的替代版本時,我們可以將其從 update-alternatives 列表中刪除掉。例如,我們可以將列表中的 python2.7 版本移除掉。
update-alternatives --remove python /usr/bin/python2.7
- 移除軟連線
rm -rf /data/logs
ln -s /temp/logs /data/logs