在linux系统下
pip3 install 安装包的名字 -i https://pypi.tuna.tsinghua.edu.cn/simple/
conda
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
修正:
用everything 搜索 “.condarc”不要忘记前面的点 打开,在- default 前面加上镜像地址,【https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/】不用加引号
然后你的.condarc 文件应该是这样的内容
channels:
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
- defaults
show_channel_urls: yes