jupyter安全目录空,但jupyter笔记本列表显示了一个正在运行的服务器
当我运行jupyter notebook list
我得到:jupyter安全目录空,但jupyter笔记本列表显示了一个正在运行的服务器
Currently running servers: http://localhost:8888/?token=2f349408fa7154054c6f3f63128f3461eb9983ec068726d1 :: /path/to/project
我查了security
目录,其中连接文件应保存当前配置文件,它的空。
我试图jupyter notebook stop
但我得到:No such file or directory: ./stop
我也尝试使用上市定影和Nettop当前打开的连接。连接不在那里,而且不应该是因为我一直没有在列出的项目上工作。
Jupyter版本是5.0.0,运行在Mac OS上。
回答:
要获取当前连接目录,我运行了jupyter --paths
,跟在Jupyter common directories and file locations documentation之后。从那里我选择了运行时目录,所以我打开它。该目录包含
- notebook_cookie_secret文件
- 许多文件与名称格式: 内核hash_number.json
- 一个文件,名称格式: NBSERVER-server_number.json
我打开nbserver-server_number.json
文件,我检查了token
号码与jupyter notebook list
给出的号码相同。我删除了该文件,现在Jupyter无法再将其视为正在运行的服务器。
以上是 jupyter安全目录空,但jupyter笔记本列表显示了一个正在运行的服务器 的全部内容, 来源链接: utcz.com/qa/266321.html