Python C9 IDE-找不到Conda命令

Python C9 IDE-找不到Conda命令,python,ubuntu,conda,c9.io,Python,Ubuntu,Conda,C9.io,我正在尝试在上安装conda。我的c9终端正在Ubuntu 14.04.5 LTS上运行 我做了以下工作: > wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh > sudo bash Miniconda3-latest-Linux-x86_64.sh 在整个安装过程中,我基本上都单击了enter和yes 我的安装位置是:/home/ubuntu/miniconda3 我试图关闭并重

我正在尝试在上安装conda。我的c9终端正在Ubuntu 14.04.5 LTS上运行

我做了以下工作:

> wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
> sudo bash Miniconda3-latest-Linux-x86_64.sh
在整个安装过程中,我基本上都单击了enter和yes

我的安装位置是:
/home/ubuntu/miniconda3

我试图关闭并重新打开航站楼,但仍然得到:

> conda
bash: conda: command not found
有什么建议我做错了什么


谢谢你的回复

您必须将
conda
函数添加到shell中,方法是将以下内容添加到
.bashrc
文件中:

source /path/to/miniconda3/etc/profile.d/conda.sh && conda activate base
该程序在Conda 4.4的发行说明中有详细说明:


对于早于4.4的conda版本,您需要在
.bashrc
文件中将conda二进制文件添加到
路径

export PATH=/path/to/miniconda3/bin:$PATH