Ubuntu 之更換與使用apt源和python源.mdpython
#! /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的包"
打開/etc/apt/sources.list文件,刪除裏面全部內容,添加如下內容進去,保存便可。web
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源,對同系統全部用戶都有效ubuntu
在用戶本身主目錄下面,先新建文件夾.pip
,而後在.pip
文件夾下建立名爲pip.conf
的文件。其文件內容以下:最後保存便可。bash
[global] 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包:url
注意若是須要安裝Python3的安裝包,請使用如下命令:python3 -m pip install numpy*** 注意若是須要安裝Python2的安裝包,請使用如下命令:python2 -m pip install numpy***