美文网首页数据可视化Python
Windows环境下,将pip源更换到国内镜像,python!

Windows环境下,将pip源更换到国内镜像,python!

作者: 老王叔叔 | 来源:发表于2019-11-16 14:52 被阅读0次

    用pip管理工具安装库文件时,默认使用国外的源文件,因此在国内的下载速度会比较慢,可能只有20KB/s。我们就可以把源替换成国内的!
    其中,比较常用的国内镜像包括:
    (1)阿里云 https://mirrors.aliyun.com/pypi/simple/
    (2)豆瓣https://pypi.douban.com/simple/
    (3)清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
    (4)中国科学技术大学 https://pypi.mirrors.ustc.edu.cn/simple/
    (5)华中科技大学https://pypi.hustunique.com/


    windows下,直接在c盘user目录中创建一个pip目录,如:C:\Users\xx\pip,然后新建文件pip.ini,在pip.ini文件中输入以下内容(以豆瓣镜像为例):

    [global]
    index-url = https://pypi.douban.com/simple
    [install]
    trusted-host = pypi.douban.com
    

    解释一下:C:\Users\xx\pip其中的xx的意思就是用户账户名字,比如我是用Administrator这个用户登录的就是这个文件夹C:\Users\Administrator\pip。

    相关文章

      网友评论

        本文标题:Windows环境下,将pip源更换到国内镜像,python!

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