国内镜像源 python
时间: 2024-10-16 09:00:44 浏览: 83
国内镜像源对于Python用户来说是一个重要的资源,它可以帮助加快Python包的下载速度并降低网络访问的延迟。在国内使用Python时,可以通过以下几个步骤配置国内的镜像源:
1. **阿里云Python官方镜像**:
- 配置pip:运行 `pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/`,然后可以使用 `pip install package_name` 来安装包。
2. **清华大学开源软件库** (清华源):
- 对于pip用户,设置环境变量 `export PYTHONGETPOPTS="--index-url http://pypi.tuna.tsinghua.edu.cn/simple --find-links http://pypi.tuna.tsinghua.edu.cn/legacy"` 或者修改pip配置文件。
- 对于conda用户,可以设置 Anaconda 的 channel 到 `https://mirrors.ustc.edu.cn/anaconda/cloud/tensorflow/`.
3. **豆瓣源** (Douban源):
- 使用 pip 可以通过 `pip install --extra-index-url=https://pypi.doubanio.com/simple` 进行安装。
4. **中科大镜像** (USTC源):
- 对于pip,类似设置 `pip config set global.index-url https://pypi.mirrors.ustc.edu.cn/simple`
5. **中国科学技术大学镜像** (USTC Mirror):
- 网址通常是 `http://pypi.mirrors.ustc.edu.cn/simple/`。
配置了镜像源之后,当你需要安装Python包时,将会优先从这些国内服务器获取,提高下载效率。然而,请注意,虽然这些都是常用的国内镜像,但并非所有包都能在本地找到,仍有可能会回退到国际源。
阅读全文