1. Anaconda卸载
卸载比较简单,直接rm -rf,简单粗暴。
rm -rf ./anaconda/anaconda3
然后把一些目录外额外的残余文件,比如.conda, .condarc,全部删掉即可
2. Anaconda安装
在官网选择对应的版本(linux版本,window版本等),或者之前的历史版本。
在本地上不用下载,直接在服务器上使用wget获取sh文件:
wget https://repo.anaconda.com/archive/Anaconda3-5.1.0-Linux-x86_64.sh
更改权限并安装:
# 更改权限 chmod 777 Anaconda3-5.1.0-Linux-x86_64.sh # 安装 ./Anaconda3-5.1.0-Linux-x86_64.sh
安装过程:
$ ./Anaconda3-5.1.0-Linux-x86_64.sh Welcome to Anaconda3 5.1.0 In order to continue the installation process, please review the license agreement. Please, press ENTER to continue >>> =================================== Anaconda End User License Agreement =================================== ... Do you accept the license terms? [yes|no]>>> yes Anaconda3 will now be installed into this location:/home/py/anaconda3 - Press ENTER to confirm the location- Press CTRL-C to abort the installation- Or specify a different location below [/home/py/anaconda3] >>> /anaconda/anaconda3 # 输入自定义安装路径,如果用默认的话回车跳过
ps:安装过程中我还出现了是否conda init指令,输入yes即可。
然后将anaconda加入环境变量,并使其生效:
$ vi .bash_profile # 在最后一行加上如下配置,其中/home/xxx/anaconda3路径是你的anaconda3目录 export PATH=/home/xxx/anaconda3/bin:$PATH # 然后使其生效: $source .bash_profile
然后,source生效之后就自动进入了conda的base环境了。
- 其他教程补充:
Conda指令:Conda | Conda的常用指令
Pytorch的安装教程:Pytorch安装过程及问题解决