Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 541 Bytes

Windows下双击打开jupyter notebook.md

File metadata and controls

18 lines (12 loc) · 541 Bytes

Windows下双击打开 jupyter notebook

  1. 打开cmd,使用pip下载并安装nbopen
pip install nbopen
python -m nbopen.install_win
  1. 安装后需要关联.ipynbjupyter notebook在命令行输入:
assoc .whl=jupyter& ftype jupyter=cmd.exe /c jupyter-notebook "%1"

缺点:这种方法只能是在已经打开了一个 jupyter notebook 后,再通过双击打开相同目录下的文件。

原文参见: http://axil.github.io/how-to-open-ipynb-file-with-one-doubleclick-on-windows.html