(python)使用清华镜像进行python的pip安装以及大量pip安装方法(只需一行代码,解决所有)
使用清华镜像进行pip安装,可以通过修改pip配置或者在安装时指定镜像。以下是一些常用的方法:
- 单次安装指定镜像:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package
- 永久修改,更改pip配置文件(Windows系统在
%APPDATA%\pip\pip.ini
,Linux/macOS在~/.pip/pip.conf
):
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
- 临时使用,可以在安装时通过
--index-url
参数指定:
pip install --index-url https://pypi.tuna.tsinghua.edu.cn/simple some-package
- 使用pip源切换工具,如
pip-config
(需要先安装):
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
- 使用环境变量设置,在安装前设置环境变量
PIP_INDEX_URL
:
export PIP_INDEX_URL=https://pypi.tuna.tsinghua.edu.cn/simple
pip install some-package
以上方法可以帮助你使用清华大学提供的镜像源来进行pip的安装。
评论已关闭