Python镜像源切换
最近发现清华源无法访问了。
更换为腾讯云的源:
pip config set global.index-url https://mirrors.cloud.tencent.com/pypi/simple
运行以上命令,即可直接设置成功,可以使用pip config list再查询一下
Conda镜像源切换
编辑配置文件".condarc",更换为上海交通大学源
channels:
- defaults
show_channel_urls: true
default_channels:
- https://mirrors.sjtug.sjtu.edu.cn/anaconda/pkgs/main
- https://mirrors.sjtug.sjtu.edu.cn/anaconda/pkgs/r
- https://mirrors.sjtug.sjtu.edu.cn/anaconda/pkgs/msys2
- https://mirrors.sjtug.sjtu.edu.cn/anaconda/pkgs/free
- https://mirrors.sjtug.sjtu.edu.cn/anaconda/pkgs/mro
- https://mirrors.sjtug.sjtu.edu.cn/anaconda/pkgs/pro
在终端运行conda info确认已更改成功
在终端运行conda clean -i 清除索引缓存,保证用的是镜像站提供的索引。
在终端运行conda search "^python$"查找可用的python版本
已验证该源国内目前可用的conda源,其他如清华源无法连接。