美文网首页
Python镜像仓库

Python镜像仓库

作者: AronChan | 来源:发表于2020-08-09 12:00 被阅读0次

    使用pip install 安装依赖库,会在Python的官方源pypi.python.org/pypi 下载,有时会因为网速慢超时无法下载成功。此时,可以通过以下命令替换比较稳定速度比较快的国内镜像来安装依赖库。

    pip install -i https://mirrors.aliyun.com/pypi/simple/ scrapy
    

    景象镜像仓库列表

    • 阿里
    https://mirrors.aliyun.com/pypi/simple/
    
    • 豆瓣
    https://pypi.douban.com/simple
    
    • 清华大学
    https://pypi.tuna.tsinghua.edu.cn/simple
    
    • 中国科技大学
    https://mirrors.ustc.edu.cn/pypi/web/simple
    

    相关文章

      网友评论

          本文标题:Python镜像仓库

          本文链接:https://www.haomeiwen.com/subject/swjldktx.html