常用国内源
注意:新版 Ubuntu 要求使用 https 源。
可用的PyPi
源列表:校园网联合镜像站。
指定临时镜像源
安装时指定 -i
参数即可指定源:
1 | pip install <package_name> -i <source_url> [--trusted-host <hostname>] |
注意:
--trusted-host
参数可选,在出现 “The repository located at … is not a trusted or secure host and is being ignored.” 报错时添加此参数。
设置默认镜像源
通过命令设置
需要 pip
版本 >=10.0.0:
1 | pip config set global.index-url <source_url> |
如果要配置多个镜像源平衡负载,可在已经替换 index-url
的情况下通过以下方式继续增加源站:
1 | pip config set global.extra-index-url "<url1> <url2>..." |
通过修改配置
默认源配置文件保存在用户目录下,没有则手动创建:
- Windows:
%USERPROFILE%\pip\pip.ini
- Unix:
~/pip/pip.conf
1 | [global] |
常用命令
检查 pip 安装情况
1 | pip --version # Python2.x |
注意:Python 2.7.9 + 或 Python 3.4+ 以上版本都自带 pip 工具。
安装 pip
官方安装:
1 | easy_install pip |
Linux 包管理器安装:
1 | apt install python-pip # Debian系 |
脚本安装:
1 | curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py # 下载安装脚本 |
注意:用哪个版本的 Python 运行安装脚本,pip 就被关联到哪个版本。
升级 pip
1 | python -m pip install --upgrade pip |
包操作
1 | # 安装包 |