????????在Linux服务器上进行环境配置时我们常用Anaconda,因为国外源下载速度慢,我们最常用操作是替换国内镜像源,如替换清华镜像:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes
? ? ? ? 这种操作可以把大部分的包链接到清华源,但例如torch等包其实还是不能下载,这种时候可以上清华源官网,手动再添加需要的链接,如下面添加pytorch的镜像:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
? ? ? ? 由于各种原因限制,国内镜像并不能包含所有的包,比如特定版本的cudatoolkit,conda社区维护了一个forge的镜像,非常的全面,但注意使用forge后,再安装包时conda会自动把大部分默认源中下载的包替换为forge的,以防止冲突:
conda config --add channels conda-forge
? ? ? ? 当以上操作均不能安装时,直接切回pip安装即可,或者这类的官网上一般有命令可以直接复制安装。
|