如何在Mac中修改pip的镜像源

一. 修改步骤

  1. 进入命令行

  2. 进入到用户根目录

    cd ~/
    
  3. 在用户根目录下创建 .pip 文件夹

    mkdir .pip
    
  4. 进入到 ~/.pip 文件夹内

    cd ~/.pip
    
  5. 创建 pip.conf 文件

    vim pip.conf
    
  6. pip.conf 文件中添加清华大学的镜像源,如下:

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

二. 其他国内镜像源

  • 阿里云:https://mirrors.aliyun.com/pypi/simple/
  • 中国科技大学:https://pypi.mirrors.ustc.edu.cn/simple/
  • 豆瓣(douban):https://pypi.douban.com/simple/
  • 中国科学技术大学:https://pypi.mirrors.ustc.edu.cn/simple/*

你可能感兴趣的:(Python,macos,pip)