debian基於系統修改 Python 版本

2021-07-27 05:23:19 字數 1452 閱讀 7124

我們可以使用 update-alternatives 來為整個系統更改 python 版本。以 root 身份登入,首先羅列出所有可用的 python 替代版本資訊:

# update-alternatives --list python 

update-alternatives: error: no alternatives for python

如果出現以上所示的錯誤資訊,則表示 python 的替代版本尚未被 update-alternatives 命令識別。想解決這個問題,我們需要更新一下替代列表,將 python2.7 和 python3.4 放入其中。

# update-alternatives --install /usr/bin/python python /usr/bin/python2.7 1 

//update-alternatives: using /usr/bin/python2.7 to provide /usr/bin/python (python) in auto mode 

# update-alternatives --install /usr/bin/python python /usr/bin/python3.4 2 

//update-alternatives: using /usr/bin/python3.4 to provide /usr/bin/python (python) in auto mode

- - install 選項使用了多個引數用於建立符號鏈結。最後乙個引數指定了此選項的優先順序,如果我們沒有手動來設定替代選項,那麼具有最高優先順序的選項就會被選中。這個例子中,我們為 /usr/bin/python3.4 設定的優先順序為2,所以 update-alternatives 命令會自動將它設定為預設 python 版本。

# python

接下來,我們再次列出可用的 python 替代版本。

# update-alternatives --list python

現在開始,我們就可以使用下方的命令隨時在列出的 python 替代版本中任意切換了。

# update-alternatives --config python 

# python 

移除替代版本:

一旦我們的系統中不再存在某個 python 的替代版本時,我們可以將其從 update-alternatives 列表中刪除掉。例如,我們可以將列表中的 python2.7 版本移除掉。

# update-alternatives --remove python /usr/bin/python2.7 

update-alternatives: removing manually selected alternative - switching python to auto mode 

update-alternatives: using /usr/bin/python3.4 to provide /usr/bin/python (python) in auto mode

debian 系統修改密碼

1 在grub的引導裝載程式選單上,選擇你要進入的條目,鍵入 e 來進入編輯模式。2 在第二行 類似於kernel vmlinuz 2.6.15 ro root dev hda2 鍵入 e 進入編輯模式 3 在句末加上 init bin bash 回車 4 按ctrl x 啟動系統。這樣我們即可獲得...

debian 修改系統時鐘。命令為 date s

其他參考 修改系統時鐘。命令為 date s 1 將時間調整為10月11日凌晨1點55分 data 10110155 2 將系統時間設定成2005年8月8日 date s 2005 08 08 3 將系統時間設定成下午8點12分0秒 date s 20 12 00 步驟 1.tzselect命令查詢...

基於debian系統IP手動和自動設定

4 將microsd卡插入beaglebone black,通電啟動 5 用網路裝置搜尋工具獲取beaglebone black的ip.搜尋網路裝置,搜尋到network adapter company為texas instruments的ip即為bbk的ip 6 用瀏覽器開啟web ssh.推薦用...