美文网首页
pip安装python模块使用国内镜像

pip安装python模块使用国内镜像

作者: CodeFUN | 来源:发表于2019-06-02 16:51 被阅读0次
    本期记录国内安装镜像,没有梯子玩蛇人士的福利~

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

    使用方法:pip install 模块 -i 源地址

    pip install matplotlib -i http://pypi.douban.com/simple/
    
    • 如果你想直接从国内源下载,不使用国外源,修改如下:
      Windows
      在user目录中创建一个pip目录,如:C:\Users\xx\pip,新建文件pip.ini,内容如下
    [global]
    index-url = https://pypi.tuna.tsinghua.edu.cn/simple
    

    相关文章

      网友评论

          本文标题:pip安装python模块使用国内镜像

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