美文网首页
Python 永久更改下载源

Python 永久更改下载源

作者: 唔使朙 | 来源:发表于2022-07-20 15:26 被阅读0次

    代码在 python 终端更改,先更新 pip 版本,再更换下载源

    1 pip install pip -U -i https://pypi.tuna.tsinghua.edu.cn/simple  #更新pip版本
    2 pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple  #更换下载源,会自动生成一个 pip.ini 文件
    

    手动更改:直接在C盘的user目录下创建一个pip文件夹,如:C:\Users\xx\pip,然后新建文件pip.ini,内容如下:

    [global] 
     
    index-url = https://pypi.tuna.tsinghua.edu.cn/simple 
    

    相关文章

      网友评论

          本文标题:Python 永久更改下载源

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