Python设置国内源

Python设置国内源

  • 永久设置阿里云的国内源
  • 永久设置清华大学的国内源
  • 临时使用pip+国内源
  • 常用的国内源
  • 其他常用的pip命令

永久设置阿里云的国内源

pip config set global.trusted-host mirrors.aliyun.com
pip config set global.index-url https://mirrors.aliyun.com/simple

永久设置清华大学的国内源

pip config set global.trusted-host pypi.tuna.tsinghua.edu.cn
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple/

临时使用pip+国内源

示例:

pip install requests -i https://pypi.tuna.tsinghua.edu.cn/simple

常用的国内源

清华大学:https://pypi.tuna.tsinghua.edu.cn/simple/

阿里云:http://mirrors.aliyun.com/pypi/simple/

中国科技大学:https://pypi.mirrors.ustc.edu.cn/simple/

豆瓣(douban) :http://pypi.douban.com/simple/

中国科学技术大学:http://pypi.mirrors.ustc.edu.cn/simple/

其他常用的pip命令

  1. 查看已安装包列表
pip list 	
  1. 直接安装包
 pip install numpy	
  1. 安装指定版本为1.11.0的numpy包
pip install numpy==1.11.0	
  1. 升级包
pip install --upgrade numpy	
  1. 卸载包
pip uninstall numpy	

你可能感兴趣的:(python,开发语言)