jupyter踩坑记录

VSCode安装完成后无法在命令行使用

无法将“jupyter”项识别为 cmdlet、函数、脚本文件或可运行程序的名称

‘jupyter’ 不是内部或外部命令,也不是可运行的程序

首先要确认环境变量:

D:\IDE-Extends\Python3\Lib\site-packages

D:\IDE-Extends\Python3\Scripts

D:\IDE-Extends\Python3

理论上第三个不需要,我只是保险起见

保险起见我直接把环境变量用户PATH与系统PATH都来了一份

其次:D:\IDE-Extends\Python3\Scripts,类似的,这个文件夹内,其实你发现根本没有 jupyter.exe

所以执行类似:jupyter nbconvert --to markdown '文件名.ipynb'命令会报错

一种可以在当前目录下复制 jupyter-notebook.exe 重命名为 jupyter.exe

另一种是直接使用 jupyter-notebook 替换命令中的 jupyter

VSCode下ipynb转md

https://blog.csdn.net/wtyuong/article/details/134810930

jupyter nbconvert --to markdown '文件名.ipynb'这个命令与上文类似的,应该是:

1
jupyter-nbconvert --to markdown '文件名.ipynb'