下面是 Python 中提高 pip 安装速度的攻略:
1. 使用国内镜像站点
使用国内镜像站点可以加快 pip 的下载速度。下面以清华大学镜像站为例:
-
打开命令行工具(如 CMD、终端),进入到用户目录下,新增或编辑
.pip/pip.conf
文件(如果该文件不存在则新建)。 -
在打开的文件中添加以下内容:
[global]
trusted-host=mirrors.tuna.tsinghua.edu.cn
index-url=https://pypi.tuna.tsinghua.edu.cn/simple/ -
保存文件并退出。
-
运行以下命令进行测试:
pip install flask
示例:
$ pip install flask
Collecting flask
Downloading https://pypi.tuna.tsinghua.edu.cn/packages/8b/4e/ef9ef4f270982c276ed11a58f555f900effdc09a3c4f6edee0691dcfa9bb/Flask-1.1.2-py2.py3-none-any.whl (94 kB)
|████████████████████████████████| 94 kB 1.7 MB/s
...
可以看到,在清华大学镜像站的加持下,下载速度得到了大幅提升。
2. 使用 pipy 镜像缓存
pipy 是 Python 包索引的官方镜像站点,也可以用来加速包的下载速度。下面介绍如何使用 pip 的缓存选项来指定使用 pipy 镜像:
-
在命令行工具中输入以下命令,设置缓存路径:
pip config set cache-dir /path/to/pip/cache
其中 /path/to/pip/cache
是你想要设置的缓存路径。
-
运行以下命令安装包,同时指定使用 pipy 镜像缓存:
pip install --cache-dir=/path/to/pip/cache -i https://pypi.python.org/simple/ package_name
其中 /path/to/pip/cache
是你设置的缓存路径,package_name
是你想要安装的包名称。
示例:
$ pip install --cache-dir=/tmp/pip-cache -i https://pypi.python.org/simple/ pandas
Downloading from URL https://pypi.python.org/simple/pandas/
Cached version https://pypi.python.org/packages/source/p/pandas/pandas-0.15.0.tar.gz#md5=c9ca5b8ccce70fa1d3bcef657e81de24 already downloaded, skipping
pandas==0.15.0 is already in the cache and will not be downloaded again
Installing collected packages: pandas
Successfully installed pandas-0.15.0
以上就是 Python 中提高 pip 安装速度的攻略,希望对你有帮助。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:python中提高pip install速度 - Python技术站