python配置清华镜像源
时间: 2024-08-12 15:06:35 浏览: 325
太实用了!Pytorch快速安装清华源 方法,最优国内镜像选择,妥妥的!
在Python中配置清华大学的镜像源主要是为了加速第三方库的下载速度。你可以通过pip工具来设置。以下是操作步骤:
1. 首先,你需要确保已经安装了pip,如果没有,可以访问Python官网下载并安装。
2. 打开命令行终端(Windows用户则是CMD或PowerShell),输入以下命令来添加清华源:
对于Python 2.x和3.x:
```
pip install --index-url https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn some_package_name
```
或者,如果你想要永久更改pip的源地址,可以在`~/.pip/pip.conf`(Linux/Mac)或`%USERPROFILE%\.pip\pip.ini`(Windows)文件中添加类似这样的内容:
```ini
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.cn
```
3. `some_package_name`应该替换为你需要安装的具体包名。
4. 使用上述设置后,pip在下载包时就会优先从清华大学的镜像源尝试获取。
阅读全文