我正在尝试在 Google Colaboratory 上使用 conda 创建一个虚拟环境。但是,由于以下错误,我无法激活。
CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'.
To initialize your shell, run
$ conda init <SHELL_NAME>
Currently supported shells are:
- bash
- fish
- tcsh
- xonsh
- zsh
- powershell
See 'conda init --help' for more information and options.
IMPORTANT: You may need to close and restart your shell after running 'conda init
Run Code Online (Sandbox Code Playgroud)
我尝试了两个改进。我尝试了三个改进。一种是在~/.bashrc中加入如下代码。
# >>> conda init >>>
__conda_setup="$(CONDA_REPORT_ERRORS=false '$HOME/anaconda3/bin/conda' shell.bash hook 2> /dev/null)"
if [ …Run Code Online (Sandbox Code Playgroud) 我想使用 Conda 从 YAML 文件创建虚拟环境。然而,许多包最终都会出现冲突错误。解决此问题的最佳方法是单独安装每个包,而不是从 YAML 文件创建虚拟环境,对吗?如果有人知道更好的方法,请告诉我。