搜尋

首頁  >  問答  >  主體

pip安装python库总是下载超时,有什么解决方法吗?

如题,最近经常出现下载超时的情况,怎么也安装不了,有什么解决方法吗?

PHP中文网PHP中文网2804 天前1310

全部回覆(11)我來回復

  • PHPz

    PHPz2017-04-17 11:20:34

    建個檔案 ~/.pip/pip.conf, 內容如下

    [global]
    index-url = http://b.pypi.python.org/simple
    [install]
    use-mirrors = true
    mirrors = http://b.pypi.python.org

    http://pypi.python.org/mirrors

    回覆
    0
  • ringa_lee

    ringa_lee2017-04-17 11:20:34

    鏡像建議用:http://e.pypi.python.org,這是北京的IP,會快很多。
    另外[global]區塊裡可以設定一個timeout = 6000,以免網路慢的情況下安裝包下載不完。

    [global]
    timeout = 6000
    index-url = http://e.pypi.python.org/simple
    [install]
    use-mirrors = true
    mirrors = http://e.pypi.python.org

    回覆
    0
  • 阿神

    阿神2017-04-17 11:20:34

    也可以指定單一函式庫的安裝來源

    pip install flask -i http://pypi.v2ex.com/simple

    回覆
    0
  • 黄舟

    黄舟2017-04-17 11:20:34

    或嘗試下 v2ex 的來源

    在 ~/.pip/ 下建立檔案 pip.conf(如果還沒有的話),並填入以下內容:

    [global]
    index-url = http://pypi.v2ex.com/simple

    回覆
    0
  • 迷茫

    迷茫2017-04-17 11:20:34

    關於新版HTTP不安全報錯,給大家一個範本。

    [global]
    timeout = 6000
    index-url = http://pypi.douban.com/simple/ 
    [install]
    use-mirrors = true
    mirrors = http://pypi.douban.com/simple/ 
    trusted-host = pypi.douban.com
    

    回覆
    0
  • 阿神

    阿神2017-04-17 11:20:34

    pip install -i https://pypi.doubanio.com/simple/ 包名
    

    很多答案提供的地址不是關閉,就是重定向了,新版一定要用https了,國內鏡像建議使用上面這個。
    個人不建議預設修改來源位址,謹防安全隱患。

    回覆
    0
  • 迷茫

    迷茫2017-04-17 11:20:34

    在PyPI Mirror查看鏡像的活躍度。選擇CN地區合適的鏡像即可。

    具體的配置方法如下
    Using a mirror
    Single Usage:

    pip install -i http://<mirror>/simple <package>
    
    

    Global settings:
    Add ~/.pip/pip.conf that includes:

    [global]
    index-url = http://<mirror>/simple
    
    

    回覆
    0
  • PHP中文网

    PHP中文网2017-04-17 11:20:34

    上面主要講了mirror,另外的一個選擇就是代理:

    pip install package --proxy=[代理地址]
    

    順便貼幾個有用的Pypi mirror:

    • 豆瓣

    • 中國科學技術大學

    回覆
    0
  • 怪我咯

    怪我咯2017-04-17 11:20:34

    現在是2017年2月20日,目前比較好使的來源是https://pypi.tuna.tsinghua.ed...
    例如
    pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple --upgrade tensorflow-gpu
    很快,pip也一樣

    回覆
    0
  • 阿神

    阿神2017-04-17 11:20:34

    最新消息,清華要關閉PyPi來源了

    回覆
    0
  • 取消回覆