jupyter找不到我的conda env

时间:2017-03-25 15:06:12

标签: python anaconda jupyter-notebook conda

我的mac中的这个目录中有一个conda env elementGet.addEventListener("transitionend", function(){}); 然后我按/anaconda/envs/dl

开始我的conda env

当我启动jupyter时它没有显示conda env dl,只显示它使用python3而不是conda env。 activate source dl

enter image description here

如果我点击终端,则会显示此信息。

enter image description here

3 个答案:

答案 0 :(得分:0)

安装nb_conda,它应该可以工作。

答案 1 :(得分:0)

您需要安装 nb_conda ,但目前nb-conda cannot be directly installed with python3.6

解决方法是从conda-forge安装它: conda install -c conda-forge nb_conda

并且不要忘记在新环境中安装jupyter笔记本。

答案 2 :(得分:0)

要在虚拟环境中使用jupyter笔记本,需要在您的venv中安装ipykernal。

Inside your virtual environment:

pip install ipykernel

Then run the kernel "self-install" script:

python -m ipykernel install --user --name=my-virtualenv-name

现在,您的新内核已经安装。