pip 使用国内镜像源加速

现在做开发可是真的不容易,好像不论哪一个语言当你使用到包管理工具的时候都要进行一些网络的配置,否则速度慢如龟,无论是 maven 还是 npm 又或者是我们要说的 pip。

更换国内的源好像已经是必备的小技能了。

阿里云

http://mirrors.aliyun.com/pypi/simple/

中国科技大学

https://pypi.mirrors.ustc.edu.cn/simple/

豆瓣

http://pypi.douban.com/simple/

清华大学

https://pypi.tuna.tsinghua.edu.cn/simple/

中国科学技术大学

http://pypi.mirrors.ustc.edu.cn/simple/

修改配置文件

编辑 pip.config 文件,文件如果不存在则新建一个

mac:~/.pip/pip.conf
linux:~/.pip/pip.conf
windows:%HOMEPATH%\pip\pip.ini

文件内容大概如下

[global]
index-url=http://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com

简单的使用方法

pip list # 列出所有安装的库
pip list -outdated # 列出所有过期的库
pip install -upgrade 库名 # 更新库
pip install -upgrade pip #更新pip自身
pip freeze # 查看安装了哪些包

转载于:https://www.cnblogs.com/dowhile/p/pip-shi-yong-guo-nei-jing-xiang-yuan-jia.html

你可能感兴趣的:(python,java)