解決pip install 速度慢
阿新 • • 發佈:2019-02-06
修改為國內源:
新版ubuntu要求使用https源,要注意。
臨時使用:
永久修改,一勞永逸:
Linux下,在home目錄下建立一下.pip文字夾(命令:mkdir .pip),在.pip資料夾下建立pip.conf檔案(命令:touch pip.conf),檔案內容如下。資料夾要加“.”,表示是隱藏資料夾)
內容如下:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host=mirrors.aliyun.com
windows下,直接在user目錄的使用者名稱目錄下建立一個pip目錄,如:你的使用者名稱是Administrator,則C:\Users\Administrator\pip,新建檔案pip.ini。內容同上。
Anaconda 映象使用幫助
Anaconda 是一個用於科學計算的 Python 發行版,支援 Linux, Mac, Windows, 包含了眾多流行的科學計算、資料分析的 Python 包。
TUNA 還提供了 Anaconda 倉庫的映象,執行以下命令:
conda config --add channels 'https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/'
conda config --set show_channel_urls yes
即可新增 Anaconda Python 免費倉庫。
執行 conda install numpy 測試一下吧。