pip设置国内镜像和代理

2021/12/23 pythonpip

若本机使用了代理,使用pip install时会出现问题,需要配置代理,为了加快install的速度,需要使用国内镜像源

  • 清华: https://pypi.tuna.tsinghua.edu.cn/simple
  • 豆瓣: https://pypi.doubanio.com/simple/

命令如下:

# packagename是要下载的包的名字
pip install -i http://pypi.douban.com/simple --trusted-host pypi.douban.com packagename 
# e.g.
pip install -i http://pypi.douban.com/simple --trusted-host pypi.douban.com numpy
1
2
3
4
Last Updated: 2021/12/23 23:28:18