Jupityr笔记本内核错误-FileNotFoundError:[WinError 2]

时间:2018-07-06 06:59:12

标签: python anaconda jupyter-notebook

我最近在Anaconda上的某些库遇到了一些问题,所以我重新安装了Anaconda,当我再次启动它时,Jupityr Notebook内核错误发现了此文本:

Value_n

启动并打开文件时出现此错误。它拒绝运行代码,只是坐在那里死了。内核错误几乎出现在使用Jupyter笔记本打开的所有文件中。

5 个答案:

答案 0 :(得分:0)

以下解决方案对我有用。您可以在虚拟环境中的命令提示符下或Anaconda提示符下运行此代码。

python -m ipykernel install --user

有关详细说明和说明,请查看here.

答案 1 :(得分:0)

  • 打开Anaconda提示
  • 激活您的环境
  • 类型: python -m ipykernel install --user
  • 启动您的jupyter笔记本

答案 2 :(得分:0)

此解决方案可能对Windows用户有用。

  1. pip uninstall jupyter
  2. 转到~\AppData\Roaming(AppData是隐藏文件),然后删除名为jupyterpython的文件夹(如果存在)。
  3. 删除~\.jupyter~\.ipython
  4. pip安装jupyter

我使用的是没有水蟒的jupyter,这完美地解决了这个问题。不确定这是否适用于蟒蛇和蟒蛇。

答案 3 :(得分:0)

我遇到了同样的问题,这个快速修复解决了我的问题

pip3 install --upgrade --force-reinstall --no-cache-dir jupyter

参考:Cannot uninstall requirement jupyter, not installed

答案 4 :(得分:0)

遇到同样的事情,但对我来说答案出奇的简单: 我用VSCode执行了一些生成图的代码,在Jupyter Notebook里出来的图太大了,虽然我指定了figsize(16,9)。

在 jupyter notebook 中重新运行这些,一切都很好。