Python Anaconda linux安装:未找到conda:命令

Python Anaconda linux安装:未找到conda:命令,python,linux,bash,anaconda,Python,Linux,Bash,Anaconda,因此,我根据官方页面的说明安装了适用于Python3.6的Anaconda 我按照所有步骤进行操作,当有人问我是否要将Anaconda3安装位置添加到我的bashrc时,我说是的。当我打印出该文件的内容时,我有: # .bashrc # Source global definitions if [ -f /etc/bashrc ]; then . /etc/bashrc fi # added by Anaconda 2.3.0 installer export PATH="/home/

因此,我根据官方页面的说明安装了适用于Python3.6的Anaconda

我按照所有步骤进行操作,当有人问我是否要将Anaconda3安装位置添加到我的
bashrc
时,我说是的。当我打印出该文件的内容时,我有:

# .bashrc

# Source global definitions
if [ -f /etc/bashrc ]; then
   . /etc/bashrc
fi

# added by Anaconda 2.3.0 installer
export PATH="/home/username/anaconda/bin:$PATH"

# added by Anaconda3 4.3.1 installer
export PATH="/home/username/anaconda3/bin:$PATH"
很明显,它被添加了。但是,当我运行
conda-V
时,我得到:

bash:conda:找不到命令


还有什么原因会导致这种情况

您需要源文件,或打开新的终端实例,以便应用配置:

source ~/.bashrc

非常感谢。一个小错误让我发疯。将在8分钟内接受。:)