bash Anaconda3-5.3.1-Linux-x86_64.sh
进行Anaconda的安装其实安装位置可以在执行安装脚本的时候直接指定,像上面要指定安装到/opt/anaconda3目录下,可以这样修改执行内容:bash bash Anaconda3-5.3.1-Linux-x86_64.sh -p /opt/anaconda3,这样这一步就可以直接回车了。
source ~/.bashrc
,之后就可以正常使用了。补充:
配置其他用户可用,将安装脚本添加到.bashrc文件中内容添加到/etc/bashrc中。内容大致是下面这个样子的, 然后执行
source /etc/bashrc
# added by Anaconda3 5.3.1 installer # >>> conda init >>> # !! Contents within this block are managed by 'conda init' !! __conda_setup="$(CONDA_REPORT_ERRORS=false '/opt/anaconda3/bin/conda' shell.bash hook 2> /dev/null)" if [ $? -eq 0 ]; then \eval "$__conda_setup" else if [ -f "/opt/anaconda3/etc/profile.d/conda.sh" ]; then . "/opt/anaconda3/etc/profile.d/conda.sh" CONDA_CHANGEPS1=false conda activate base else \export PATH="/opt/anaconda3/bin:$PATH" fi fi 复制代码首先在官网下载对应版本
1.Anaconda3-2021.05-Linux-x86_64.sh
2.bash Anaconda3-2021.05-Linux-x86_64.sh执行此命令(pwd查看当前位置,要先对应到当前位置)
剩余步骤同上