Summary
arch linux 系统配置文件是综合一起放在~/config目录里的,home路径看起来就没有那么乱
创建pip.conf
mkdir -p ~/config/pip
vim ~/config/pip/pip.conf
添加源
[global]
index-url = https://pypi.douban.com/simple
這裏使用的是豆瓣的源,當然你也可以使用其他的
臨時換源
pip install xxx -i https://pypi.douban.com/simple
指定文件安裝
一般安裝包都會有一個requirements.txt文件,裏面就是python依賴包的列表
pip install -r requirements.txt
搜索指定python包
pip search xxx