Python相关问题

pip镜像

用pip管理工具安装库文件时,默认使用的是国外的源文件,墙的原因导致其下载速度很慢甚至无法下载,因此需要对pip设置镜像源。

  • 临时使用
pip install -i <镜像源地址> some-package
// 如采用清华镜像
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package
  • 永久修改
  1. 在用户根目录下新建文件夹pip(C:\Users\用户名\pip)
  2. 在pip文件夹下新建pip.ini
  3. 在该文件中输入如下内容
#在.pip目录创建并编辑pip.conf
#pip安装需要使用的https加密,所以在此需要添加trusted-host 
[global]
trusted-host = mirrors.ustc.edu.cn
index-url = https://mirrors.ustc.edu.cn/pypi/web/simple

目前国内常用的pypi镜像有:
http://pypi.douban.com/ 豆瓣
http://pypi.hustunique.com/ 华中理工大学
http://pypi.sdutlinux.org/ 山东理工大学
http://pypi.mirrors.ustc.edu.cn/ 中国科学技术大学
http://mirrors.aliyun.com/pypi/simple/ 阿里云
https://pypi.tuna.tsinghua.edu.cn/simple/ 清华大学


待新增内容...

你可能感兴趣的:(Python相关问题)