pip

pip 常用命令

pip install ./downloads/SomePackage-1.0.4.tar.gz 
pip install http://my.package.repo/SomePackage-1.0.4.zip
pip search "query"   ##查询package的具体名称
pip uninstall package-name  ##卸载
pip install SomePackage==1.0.4  ##指定版本的安装
pip install --upgrade SomePackage  ##package 版本升级

更改pip源至国内镜像

经常在使用python的时候需要安装各种模块,而pip是很强大的模块安装工具,但是由于国外官方pypi经常被墙,导致不可用,所以我们最好是将自己使用的pip源更换一下,这样就能解决被墙导致的装不上库的烦恼。

网上有很多可用的源,例如

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

  • 豆瓣:https://pypi.douban.com/simple/ - 阿里云 https://mirrors.aliyun.com/pypi/simple/ - 中科大 https://pypi.mirrors.ustc.edu.cn/simple/

建议使用清华的镜像。


临时使用

可以在使用pip的时候加参数

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

例如:

pip install jupyter -i https://pypi.tuna.tsinghua.edu.cn/simple
#这样就会从清华这边的镜像去安装jupyter库。

永久修改

修改 ~/.pip/pip.conf (没有就创建一个), 内容如下:

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

https://blog.csdn.net/lambert310/article/details/52412059