pip和conda安裝源更改
阿新 • • 發佈:2019-04-11
安裝 修改 https ref free config glob panda mirror
pip和conda安裝源更改
python模塊安裝,使用國內源可以提高下載速度。
pip源更改:
pip源有好幾個,我一直用的清華的pip源,它5分鐘同步一次。
臨時使用:
pip 後加參數 -i https://pypi.tuna.tsinghua.edu.cn/simple
例:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pandas
永久使用:
Linux下:
修改 ~/.pip/pip.conf (沒有就創建一個), 修改 index-url至tuna,內容如下:
[global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple
windows下:
直接在user目錄中創建一個pip目錄,如:C:\Users\xxxx\pip,新建文件pip.ini,內容如下
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
conda源更改:
conda源國內只有清華有,
修改源只需輸入如下兩行命令:
conda源更改:
conda源國內只有清華有,
修改源只需輸入如下兩行命令:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ conda config --set show_channel_urls yes 就可以了。
可以隨便測試下速度,conda install pandas
pip和conda安裝源更改