美文网首页
Mac OS 下 Python3 pip 配置国内源

Mac OS 下 Python3 pip 配置国内源

作者: 夜空最亮的9星 | 来源:发表于2020-04-18 16:57 被阅读0次
    # Mac OS
    ~ mkdir .pip    # 在家目录下创建一个.pip目录
    ~ cd pip
    ~ touch pip.conf # 创建一个pip配置文件
    # 写入配置
    [global]
    index-url = https://pypi.tuna.tsinghua.edu.cn/simple
    [install]
    trusted-host=pypi.tuna.tsinghua.edu.cn
    

    原文链接 :https://blog.csdn.net/qq_43340659/article/details/82948529

    相关文章

      网友评论

          本文标题:Mac OS 下 Python3 pip 配置国内源

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