1. 問題處理
當咱們更換鏡像源進行pip 安裝時,可能會出現報錯:ERROR: Cannot determine archive format of :XXXXXXXXXX
好比我剛開始安裝tf2.0:python
pip install -i https://pypi.douban.com/simple tensorflow==2.0.0
出現了上面的錯誤,下面咱們只須要改爲以下便可:web
pip install -i https://pypi.douban.com/simple --trusted-host pypi.douban.com tensorflow==2.0.0
經過設置 --trusted-host pypi.douban.com 信任該鏡像源。bash
2. 其餘經常使用鏡像源
阿里雲 http://mirrors.aliyun.com/pypi/simple 豆瓣 http://pypi.douban.com/simple 清華大學 https://pypi.tuna.tsinghua.edu.cn/simple 中科大 http://pypi.mirrors.ustc.edu.cn/simple 網易雲 https://mirrors.163.com/pypi/simple
當咱們用其餘源進行安裝時,出現上面問題時。一樣能夠使用這種解決方法:svg
# 以清華源爲例 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn 模塊名
3. 更多問題請參考
ubantu系統下更換鏡像源(阿里|清華|中科大|網易)spa
pip安裝matplotlib.net
本文同步分享在 博客「AI 菌」(CSDN)。
若有侵權,請聯繫 support@oschina.cn 刪除。
本文參與「OSC源創計劃」,歡迎正在閱讀的你也加入,一塊兒分享。code