我有python3内核,并希望将python2内核添加到我的Jupyter笔记本中。
我以前添加python2的命令:
jupyter kernelspec install C:\Python27\
我明白了:
[InstallKernelSpec] Installed kernelspec python27 in C:\ProgramData\jupyter\kernels\python27
但是当我列出内核时:
Available kernels:
python3 c:\users\usrer1\appdata\local\programs\python\python36-32\share\jupyter\kernels\python3
为什么python2内核没有添加到列表中?
答案 0 :(得分:0)
您可以在以下链接中找到此消息。
“本文档涵盖了IPython 6.0及更高版本。从版本6.0开始,IPython停止支持与低于3.3的Python版本的兼容性,包括所有版本的Python 2.7。 如果您正在寻找与Python 2.7兼容的IPython版本,请使用IPython 5.x LTS版本并参考其文档(LTS是长期支持版本)。“
https://ipython.readthedocs.io/en/latest/install/kernel_install.html
以下是5.x文档的链接......
http://ipython.readthedocs.io/en/5.x/install/kernel_install.html#kernel-install
这是另一种可能对您有帮助的资源。它还提到是的,与文档的碎片有点麻烦。
https://github.com/jupyter/jupyter/issues/71
您在链接中找到的许多建议都假设您使用的是某种版本的pip或Anaconda。我在使多个内核工作时遇到了一些麻烦,但是,Anaconda确实使事情变得更简单,更容易管理。他们甚至提供了{2.7}版本的this下载。
希望它成功; Jupyter笔记本是一种使用的乐趣。