配置pip源
1、使用配置文件配置文件
[global]
trusted-host=pypi.doubanio.com
index-url=https://pypi.doubanio.com/simple
配置文件放置位置
Linux下:
放在~/.pip/pip.conf
windows下:
用户文件夹\pip\pip.ini
2、临时用命令行改变源
pip install -i <mirror> --trusted-host <mirrorhost> package
例如
pip install -i https://pypi.doubanio.com/simple --trusted-host pypi.doubanio.com selenium