欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

任意目录 直接右键 jupyter notebook打开

程序员文章站 2022-09-14 08:39:03
任意目录直接右键jupyter notebook打开1.前言2.步骤2.1打开注册表2.2命名+图标2.3建立命令链接3 结束1.前言每次打开jupyter notebook都是默认目录,想打开自己的目录,就要完整路径,特别烦,如果可以打开文件所在目录后,直接右键可以用jupyter notebook打开此目录,就很爽2.步骤2.1打开注册表键盘win+r,输入regedit打开注册表,找到HKEY_CLASSES_ROOT\Directory\Background\shell,对shell右键,...

任意目录直接右键jupyter notebook打开

1.前言

每次打开jupyter notebook都是默认目录,想打开自己的目录,就要完整路径,特别烦,如果可以打开文件所在目录后,直接右键可以用jupyter notebook打开此目录,就很爽

2.步骤

2.1打开注册表

键盘win+r,输入regedit打开注册表,找到HKEY_CLASSES_ROOT\Directory\Background\shell,对shell右键,新建命名为jupyter
任意目录 直接右键 jupyter notebook打开
任意目录 直接右键 jupyter notebook打开

2.2命名+图标

jupyter项的右侧窗口,右键默认 ,将数据修改为jupyter notebook(要显示的名称)
再右键,新建字符串,名称改为Icon,数据改为图标文件地址
图标地址的查找方法是:找到jupyter notebook的快捷方式,右键-属性-快捷方式-更改图标-查找此文件中的图标
任意目录 直接右键 jupyter notebook打开
任意目录 直接右键 jupyter notebook打开

2.3建立命令链接

在2.1新建的jupyter notebook下右键-新建-项,重命名为command,右边界面的默认,右键-修改 数据,内容填写D:\anaconda\python.exe D:\anaconda\Scripts\jupyter-notebook-script.py"%V"
上面的D:\anaconda使用的时候,替换成自己的anaconda的路径
原理是使用python.exe打开jupyter notebook的驱动.py文件,%V一定要加,用来打开当前目录
任意目录 直接右键 jupyter notebook打开
任意目录 直接右键 jupyter notebook打开

3 结束

效果如下:
任意目录 直接右键 jupyter notebook打开

本文地址:https://blog.csdn.net/ydh_000/article/details/107142264