Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/visual-studio-code/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
在将jupyter笔记本转换为html时,没有名为pythonjvsc的内核_Python_Visual Studio Code_Jupyter Notebook - Fatal编程技术网

在将jupyter笔记本转换为html时,没有名为pythonjvsc的内核

在将jupyter笔记本转换为html时,没有名为pythonjvsc的内核,python,visual-studio-code,jupyter-notebook,Python,Visual Studio Code,Jupyter Notebook,我在Visual Studio代码中有一个非常简单的jupyter笔记本: print("hello") 我想从中创建一个HTML 我在python终端中使用以下命令: jupyter nbconvert --execute --to html --no-input --no-prompt .\test1.ipynb 但我得到了这个错误: jupyter_client.kernelspec.NoSuchKernel: No such kernel named pytho

我在Visual Studio代码中有一个非常简单的jupyter笔记本:

print("hello")
我想从中创建一个HTML

我在python终端中使用以下命令:

jupyter nbconvert --execute --to html  --no-input --no-prompt .\test1.ipynb
但我得到了这个错误:

jupyter_client.kernelspec.NoSuchKernel: No such kernel named pythonjvsc74a57bd0f240191ec4420135543f68463e6c8f002b19e83e792c8df3dc5d9bba67575c13
几天前它还在工作,所以可能是更新VisualStudio代码的副作用

谷歌搜索向我展示了类似的问题,但都与康达有关,但我没有使用康达。它是python 3.8.7

我怎样才能解决这个问题