打开JupyterNotebook时没有Conda环境

时间:2018-06-05 07:24:51

标签: python jupyter-notebook conda environment

我使用Anaconda打开一个Jupyter笔记本:

enter image description here

当我在默认环境中打开Jupyter笔记本时,' root',一切都很好:

enter image description here

normal Conda environment

但是当我在另一个中打开Jupyter笔记本时会出现一些错误 环境。

enter image description here

enter image description here

enter image description here

empty Conda environment

我是否应该补充一些必要的信息?

非常感谢。

1 个答案:

答案 0 :(得分:0)

这是因为您尚未在该环境中安装jupyter笔记本。激活您的环境并输入where jupyter。最有可能的是,您会看到C:\Software\Anaconda\Scripts\jupyter.exe

然后输入path。您应该看到类似PATH=c:\Software\Anaconda\envs\<your env>; ... long output ;c:\Software\Anaconda; ...

的内容

cmd解释器首先在当前目录中搜索jupyter可执行文件,然后在PATH中列出的目录中搜索。它发布了它发现的第一个。

这就是为什么PATH中的第一个条目与您的环境相关的原因。

如果jupyter将在其他地方找到,它将成功启动,但显然不会对您的单独环境有所了解。

这可以通过您环境中的conda install jupyter来解决。

另见this question