我在WSLUbuntu20.04中使用VSCode。我试图导出一个木星笔记本到PDF或VSCode中的HTML,使用内置的导出功能,在木星扩展。我收到以下错误消息:Jupyter command 'jupyter-nbconvert' not found.
我尝试过的事情:
更改VSCode
上
我没有尝试过的东西,这是similar question中其他人提出的
pip3 : The term 'pip3' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
返回此错误:pip3 install nbconvert
从集成终端运行which nbconvert
将不会返回任何结果。我通过pip3安装了via转换。
发布于 2022-09-21 02:25:12
pip3 :术语“pip3”不被识别为cmdlet的名称
尝试使用以下命令安装nbconvert:
python -m pip install nbconvert -U
https://stackoverflow.com/questions/73790994
复制相似问题