如有错误,恳请指出。
最近有实验室有新的服务器,需要重新配置环境。之前记录过深度学习环境Pytorch的安装,现在补充一下管理虚拟环境的Anaconda的安装过程。
卸载比较简单,直接rm -rf
,简单粗暴。
rm -rf ./anaconda/anaconda3
然后把一些目录外额外的残余文件,比如.conda
, .condarc
,全部删掉即可
在官网选择对应的版本(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环境了。
在~/.bashrc文件下添加anaconda变量即可
vim ~/.bashrc
export PATH=$PATH:/home/vincent/anaconda3/bin
source ~/.bashrc
Conda指令:Conda | Conda的常用指令