Ubuntu 之更換與使用apt源和python源(僅對zju內網適用)
阿新 • • 發佈:2018-12-10
Ubuntu 之更換與使用apt源和python源.md
一鍵更換指令碼內容
#! /bin/bash echo "設定浙大映象源" (cat << EOF deb http://mirrors.zju.edu.cn/ubuntu xenial main universe restricted multiverse deb http://mirrors.zju.edu.cn/ubuntu xenial-security main universe restricted multiverse deb http://mirrors.zju.edu.cn/ubuntu xenial-updates main universe restricted multiverse deb http://mirrors.zju.edu.cn/ubuntu xenial-backports main universe restricted multiverse deb-src http://mirrors.zju.edu.cn/ubuntu xenial main universe restricted multiverse deb-src http://mirrors.zju.edu.cn/ubuntu xenial-security main universe restricted multiverse deb-src http://mirrors.zju.edu.cn/ubuntu xenial-updates main universe restricted multiverse deb-src http://mirrors.zju.edu.cn/ubuntu xenial-backports main universe restricted multiverse EOF ) | sudo tee /etc/apt/sources.list echo "寫入浙大Ubuntu16.04 amd64 apt映象源完成" sudo apt update echo "現在開始修改Python的Zju pipy源:" cd ~ mkdir .pip cd .pip (cat << EOF index-url=http://mirrors.zju.edu.cn/pypi/web/simple trusted-host=mirrors.zju.edu.cn disable-pip-version-check =true EOF ) | sudo tee ~/.pip/pip.conf echo "更換成Zju Pipy源完成" echo "注意如果需要安裝Python3的安裝包,請使用以下命令:python3 -m pip install numpy" echo "注意如果需要安裝Python2的安裝包,請使用以下命令:python2 -m pip install numpy" echo "不建議大家直接用pip install的方式安裝python包,這樣你會不清楚裝的是python2的包還是python3的包"
修改Ubuntu apt源
開啟/etc/apt/sources.list檔案,刪除裡面所有內容,新增以下內容進去,儲存即可。
deb http://mirrors.zju.edu.cn/ubuntu xenial main universe restricted multiverse deb http://mirrors.zju.edu.cn/ubuntu xenial-security main universe restricted multiverse deb http://mirrors.zju.edu.cn/ubuntu xenial-updates main universe restricted multiverse deb http://mirrors.zju.edu.cn/ubuntu xenial-backports main universe restricted multiverse deb-src http://mirrors.zju.edu.cn/ubuntu xenial main universe restricted multiverse deb-src http://mirrors.zju.edu.cn/ubuntu xenial-security main universe restricted multiverse deb-src http://mirrors.zju.edu.cn/ubuntu xenial-updates main universe restricted multiverse deb-src http://mirrors.zju.edu.cn/ubuntu xenial-backports main universe restricted multiverse
注意:這種方式修改的apt源,對同系統所有使用者都有效
修改Ubunt 的Python 源
在使用者自己主目錄下面,先新建資料夾.pip
,然後在.pip
資料夾下建立名為pip.conf
的檔案。其檔案內容如下:最後儲存即可。
index-url=http://mirrors.zju.edu.cn/pypi/web/simple
trusted-host=mirrors.zju.edu.cn
disable-pip-version-check =true
注意:這種形式修改的pipy源只對當前使用者生效。不推薦使用者直接使用pip install
的方式安裝包(容易不清楚安裝的是python3還是python2的包)。推薦使用以下命令安裝python包:
注意如果需要安裝Python3的安裝包,請使用以下命令:python3 -m pip
注意如果需要安裝Python2的安裝包,請使用以下命令:python2 -m pip