在右键菜单中添加用Jupyter Notebook打开
Posted wujingtao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在右键菜单中添加用Jupyter Notebook打开相关的知识,希望对你有一定的参考价值。
在右键菜单中添加用Jupyter Notebook打开
为了把 Jupyter 的工作目录指定到某一个文件夹下,每次都要启动 CMD 终端, 然后激活 Anaconda 环境,再启动 Jupyter Notebook ,麻烦至极。 所以做了下面这个脚本,把启动 Jupyter 添加到右键菜单中,这样每次启动 Jupyter 通过点点鼠标就可以了。
新建一个文件,命名为open-with-jupyter.reg,文件编码选择gbk或gb2312不然肯能会出现乱码。 然后把下面的代码粘贴进去,保存后双击即可。
注意:我的Anaconda安装目录在C:ProgramDataAnaconda3,如果你的不同则需要修改一下路径。
如果你不需要激活安装环境,则可以把脚本中的C:\ProgramData\Anaconda3\Scripts\activate.bat &&去掉。
- Windows Registry Editor Version 5.00
- [HKEY_CLASSES_ROOTDirectoryBackgroundshellOpen Jupyter]
- @="在 Jupyter Notebook 中打开"
- "Icon"="C:\ProgramData\Anaconda3\Menu\jupyter.ico"
- [HKEY_CLASSES_ROOTDirectoryBackgroundshellOpen Jupytercommand]
- @="cmd /K C:\ProgramData\Anaconda3\Scripts\activate.bat && cd %V && jupyter notebook"
- [HKEY_CLASSES_ROOTDirectoryshellOpen Jupyter]
- @="在 Jupyter Notebook 中打开"
- "Icon"="C:\ProgramData\Anaconda3\Menu\jupyter.ico"
- [HKEY_CLASSES_ROOTDirectoryshellOpen Jupytercommand]
- @="cmd /K C:\ProgramData\Anaconda3\Scripts\activate.bat && cd %1 && jupyter notebook"
以上是关于在右键菜单中添加用Jupyter Notebook打开的主要内容,如果未能解决你的问题,请参考以下文章