本文最后更新于 2025年4月9日 晚上
1. 下载安装包
由于服务器连接的是内网,可以在浙大镜像源下载Anaconda,下载地址:https://mirrors.zju.edu.cn/docs/anaconda/,在安装映像里选取对应的架构版本(架构查看方法:uname -a
,192小服务器和13大集群是x86_64,所以选择Linux_x86_64.sh
后缀的版本),右键复制下载链接
1 2 3
| mkdir ~/Programs && cd ~/Programs
wget https://mirrors.zju.edu.cn/anaconda/archive/Anaconda3-2023.03-Linux-x86_64.sh
|
2. 安装
1 2 3 4 5
| chmod +x Anaconda3-2023.03-Linux-x86_64.sh ./Anaconda3-2023.03-Linux-x86_64.sh
|
3. 换源
如果用户目录下没有.condarc文件的话,先要用这句命令创建.condarc文件
1
| conda config --set show_channel_urls yes
|
修改~/.condarc文件为:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| channels: - defaults show_channel_urls: true default_channels: - https://mirrors.zju.edu.cn/anaconda/pkgs/main - https://mirrors.zju.edu.cn/anaconda/pkgs/r - https://mirrors.zju.edu.cn/anaconda/pkgs/msys2 custom_channels: conda-forge: https://mirrors.zju.edu.cn/anaconda/cloud msys2: https://mirrors.zju.edu.cn/anaconda/cloud bioconda: https://mirrors.zju.edu.cn/anaconda/cloud menpo: https://mirrors.zju.edu.cn/anaconda/cloud pytorch: https://mirrors.zju.edu.cn/anaconda/cloud pytorch-lts: https://mirrors.zju.edu.cn/anaconda/cloud simpleitk: https://mirrors.zju.edu.cn/anaconda/cloud
|
清除缓存并更新(可能耗时较久)
1 2
| conda clean -i conda update --all
|
修改pip源
1
| pip config set global.index-url https://mirrors.zju.edu.cn/pypi/web/simple
|