Ubuntu apt-get和pip源更換
更新資料來源為國內,是為了加速安裝包的增加速度。
更換apt-get資料來源
- 輸入:sudo -s切換為root超級管理員;
- 執行命令:vim /etc/apt/sources.list;
- 使用命令:%d 清空所有內容;
- 清華資料來源地址:https://mirrors.tuna.tsinghua.edu.cn/help/ubuntu/ 選擇相應的版本複製內容,點選“i”鍵進入編輯文字模式,貼上內容到vim編輯窗體,點選“ESC”鍵進入編輯模式,輸入“:wq”儲存離開;
- 更新源:sudo apt-get update
- 更新軟體:sudo apt-get upgrade
pip3的安裝與升級
安裝pip3:sudo apt-get install python3-pip
升級pip3:sudo pip3 install --upgrade pip
檢視pip版本:pip -V
pip源更換
- 根目錄建立.pip檔案:mkdir ~/.pip
- 建立檔案pip.conf:vim .pip/pip.conf
點選“i”鍵,進入編輯模式,複製資訊:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.cn
這個更換的是清華的源,清華的源5分鐘同步官網一次,建議使用。
清華大學 https://pypi.tuna.tsinghua.edu.cn/simple/
阿里雲 http://mirrors.aliyun.com/pypi/simple/
中國科技大學 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) http://pypi.douban.com/simple/
中國科學技術大學 http://pypi.mirrors.ustc.edu.cn/simple/點選:“ESC”切換到命令列模式,輸入“:wq”儲存離開。
修改預設python版本號
我們也可以把Ubuntu的預設python版本號進行修改,步驟如下:
1、刪除原有Python連線檔案
sudo rm /usr/bin/python
2、切換成root賬戶,建立指向Python3的連線
切換root賬戶:sudo -s
建立執行Python3的連線
ln -s /usr/bin/python3.6 /usr/bin/python
以上操作就是完成預設Python版本號設定,使用:python -V檢視預設版本號.