C9 IDE - 找不到 Conda 命令
C9 IDE - Conda command not found
我正在尝试在 c9-ide 上安装 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
我基本上是在整个安装过程中点击回车和是。
我的安装位置是:/home/ubuntu/miniconda3
我尝试关闭并重新打开终端,但我仍然得到:
> conda
bash: conda: command not found
对我做错了什么有什么建议吗?
感谢您的回复!
您必须通过将以下内容添加到您的 .bashrc
文件来将 conda
功能添加到您的 shell:
source /path/to/miniconda3/etc/profile.d/conda.sh && conda activate base
此过程在 Conda 4.4 的发行说明中有详细说明:https://github.com/conda/conda/blob/master/CHANGELOG.md#440-2017-12-20
对于早于 4.4 的 conda 版本,您需要将 conda 二进制文件添加到 PATH
,并在 .bashrc
文件
中添加以下内容
export PATH=/path/to/miniconda3/bin:$PATH
我正在尝试在 c9-ide 上安装 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
我基本上是在整个安装过程中点击回车和是。
我的安装位置是:/home/ubuntu/miniconda3
我尝试关闭并重新打开终端,但我仍然得到:
> conda
bash: conda: command not found
对我做错了什么有什么建议吗?
感谢您的回复!
您必须通过将以下内容添加到您的 .bashrc
文件来将 conda
功能添加到您的 shell:
source /path/to/miniconda3/etc/profile.d/conda.sh && conda activate base
此过程在 Conda 4.4 的发行说明中有详细说明:https://github.com/conda/conda/blob/master/CHANGELOG.md#440-2017-12-20
对于早于 4.4 的 conda 版本,您需要将 conda 二进制文件添加到 PATH
,并在 .bashrc
文件
export PATH=/path/to/miniconda3/bin:$PATH