美文网首页
python pip 使用国内源

python pip 使用国内源

作者: HelloJames | 来源:发表于2019-06-08 12:35 被阅读0次

    国内源:

    新版ubuntu要求使用https源,要注意。

    临时使用

    可以在使用pip的时候加参数-i https://pypi.tuna.tsinghua.edu.cn/simple
    例如:pip install -i http://mirrors.aliyun.com/pypi/simple/ tensorflow,这样就会从阿里云这边的镜像去安装tensorflow库。

    永久使用

    在Linux下, 修改 ~/.pip/pip.conf (没有就创建一个文件夹及文件。文件夹要加“.”,表示是隐藏文件夹)

    内容如下:

    [global]
    index-url = https://pypi.tuna.tsinghua.edu.cn/simple
    [install]
    trusted-host=mirrors.aliyun.com
    

    windows下,直接在user目录中创建一个pip目录,再新建文件pip.ini。(例如:C:\Users\WQP\pip\pip.ini)内容同上。

    相关文章

      网友评论

          本文标题:python pip 使用国内源

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