美文网首页
pip源更换到国内镜像

pip源更换到国内镜像

作者: overad | 来源:发表于2020-03-09 11:56 被阅读0次

    比较常用的国内镜像包括:

    1. 阿里云 http://mirrors.aliyun.com/pypi/simple/
    2. 豆瓣 http://pypi.douban.com/simple/
    3. 清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
    4. 中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
    5. 华中科技大学 http://pypi.hustunique.com/

    设置方法:(以清华镜像为例,其它镜像同理)

    (1)临时使用:

    可以在使用pip的时候,加上参数-i和镜像地址(如
    https://pypi.tuna.tsinghua.edu.cn/simple),
    例如:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pandas,这样就会从清华镜像安装pandas库。

    (2)永久修改,一劳永逸:

    1. Linux下,修改 ~/.pip/pip.conf (没有就创建一个文件夹及文件。文件夹要加“.”,表示是隐藏文件夹)
      内容如下:
      [global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple [install] trusted-host = https://pypi.tuna.tsinghua.edu.cn
    2. windows下,直接在user目录中创建一个pip目录,如:C:\Users\xx\pip,然后新建文件pip.ini,即 %HOMEPATH%\pip\pip.ini,在pip.ini文件中输入以下内容(以豆瓣镜像为例):
      [global] index-url = http://pypi.douban.com/simple [install] trusted-host = pypi.douban.com

    相关文章

      网友评论

          本文标题:pip源更换到国内镜像

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