jupyter-notebook添加python虚拟环境的kernel

 

  1. 打开cmd,我本地虚拟环境有三个,一个是anaconda自带的base,另外两个是我自己新增的,这里以在python34中设置为例。jupyter-notebook添加python虚拟环境的kernel_第1张图片
  2. 没有给jupyter配置python34虚假环境变量前:jupyter-notebook添加python虚拟环境的kernel_第2张图片
  3. 使用activate python34把虚拟环境切换到python34下:jupyter-notebook添加python虚拟环境的kernel_第3张图片
  4. 使用conda list查看没有安装ipykernel包之前python34下的包列表jupyter-notebook添加python虚拟环境的kernel_第4张图片
  5. 使用conda install ipykernel安装ipykernel包,命令在4中的截图里。
  6. 安装好ipykernel后使用conda list查看python34下的包如下:jupyter-notebook添加python虚拟环境的kernel_第5张图片
  7. 此步骤非常重要,使用ipython kernel install --user --name=python34  (python34为你虚拟环境名称)jupyter-notebook添加python虚拟环境的kernel_第6张图片
  8. 再次打开jupyter就可以看到虚拟环境变量配置好了jupyter-notebook添加python虚拟环境的kernel_第7张图片

你可能感兴趣的:(jupyter-notebook添加python虚拟环境的kernel)