python镜像源切换
时间: 2024-10-16 16:00:20 浏览: 50
python 永久镜像配置文件
5星 · 资源好评率100%
Python 镜像源是用来加速 Python 包的下载和安装的仓库。如果你需要在中国大陆使用更快的下载速度,可以考虑切换到国内的镜像源,如阿里云、清华大学、豆瓣等。以下是切换步骤:
1. **使用pip** 安装时指定镜像源:
```shell
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
# 或者其他镜像地址,如清华源:
pip config set global.index-url http://pypi.tuna.tsinghua.edu.cn/simple/
```
2. **临时设置** 某次安装时使用特定镜像:
```shell
pip install package_name -i https://mirrors.aliyun.com/pypi/simple/
```
3. **环境变量** 设置全局镜像源:
将 `PYTHONPIPY_MIRROR` 环境变量设置为你选择的镜像源地址。
4. **Conda用户**(如果你使用 Anaconda)可以在 `.condarc` 文件里添加类似下面的内容:
```ini
channels:
- https://mirrors.ustc.edu.cn/anaconda/cloud/menpo/
```
切换镜像源后,pip和conda会优先从新设置的源下载包。记得定期检查镜像源的可用性和更新情况,因为国外的源可能会有访问延迟。
阅读全文