jupyter服务器:未启动,vs代码中没有内核


10

我试图从vs代码使用jupyter笔记本,并安装了jupyter笔记本扩展,并且我正在使用(base)conda环境执行。虽然这发生了

错误:无法启动Jupyter。尝试在A.startServer(c:\ Users \ DELL.vscode \ extensions \ ms-python.python-2020.2.63990 \ out \ client \ extension.js:1:784356)处找到jupyter时出错:( c:\ Users \ DELL.vscode \ extensions \ ms-python.python-2020.2.63990 \ out \ client \ extension.js:1:783811)在异步A.ensureServerAndNotebook(c:\ Users \ DELL.vscode \ extensions \ ms-python.python-2020.2.63990 \ out \ client \ extension.js:1:783612)在异步A.submitCode(c:\ Users \ DELL.vscode \ extensions \ ms-python.python-2020.2.63990 \ out \ client \ extension.js:1:780564)在异步A.reexecuteCell(c:\ Users \ DELL.vscode \ extensions \ ms-python.python-2020.2.63990 \ out \ client \ extension.js:75:879318)

Jupyter笔记本的状态

如何解决这个问题?

Answers:


17

当我安装Visual Studio Code并尝试在新版Ubuntu 18.04上从jupyter笔记本运行一些Python代码时,我遇到了完全相同的问题。

我如何解决的:

1)按Command+Shift+P打开新的命令面板

2)类型 >Python: Select Intepreter to start jupyter notebook server

3)再次打开笔记本

而且效果很好。希望对你有效。


5
  1. 按Command + Shift + P

  2. 类型

    Python:选择解释器以启动Jupyterserver

它会向您显示安装的python版本的下拉列表。

我选择了python 3.7.5,它为我工作。


5

我安装了多个版本的Python。这件事对我来说也是一样,我已经用这种方法解决了。Ctrl + Shift + p并选择Python:选择解释器以启动Jupyter服务器 在此处输入图片说明

然后,在Visual Studio Code下选择版本 在此处输入图片说明

什么也不会发生,然后再次按Ctrl + Shift + p并选择Python:创建新的空白Jupyter Notebook。而且有效

我什至将Python版本的底部设置为3.8,即使我选择的版本为3.7.5,它也可以与新功能print(a:= 4)一起使用。不过,我必须在Anaconda Navigator中吃VS Code。

在此处输入图片说明



By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.