服务器安装 anaconda 及 conda: command not found [解决方案]

[解决方案] conda: command not found

    • Anaconda3 安装
    • conda: command not found

Anaconda3 安装

由于连接的服务器,无法直接在anaconda官网上下载安装文件,所以使用如下方法:

wget https://repo.anaconda.com/archive/Anaconda3-2023.03-Linux-x86_64.sh

之后一直按enter,直到出现提示要输入yes or no,输入yes

显示以下信息即为安装成功

Thank you for installing Anaconda3 !

conda: command not found

在终端输入conda info --envs查看anaconda是否安装成功,发现报错:conda: command not found

原因在于:~/.bashrc文件没有配置好

[解决步骤]:

1、找到你的anaconda3 安装位置(例如:/home/user/anaconda3/bin)

2、vim ~/.bashrc(在最后一行添加以下内容,然后按esc键退出,wq:保存退出) 注意这里需要用到vim 的编辑语法

export PATH=$PATH:/home/user/anaconda3/bin
## >>> conda initialize >>>

!! Contents within this block are managed by 'conda init' !!

__conda_setup="$('/home/hd/miniconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/home/user/anaconda3/etc/profile.d/conda.sh" ]; then
. "/home/user/anaconda3/etc/profile.d/conda.sh"
else
export PATH="/home/user/anaconda3/bin:$PATH"
fi
fi
unset __conda_setup
### <<< conda initialize <<<

3、source ~/.bashrc(添加后激活)

参考:
服务器上安装anaconda
[解决方案] conda: command not found

你可能感兴趣的:(ubuntu)