📅  最后修改于: 2023-12-03 15:09:03.426000             🧑  作者: Mango
当我们使用 Jupyter Notebook 进行开发时,通常需要在终端中启动它,但在有些情况下,我们需要在终端中关闭它。本文将介绍两种在终端中关闭 Jupyter Notebook 的方法。
当我们在终端中启动 Jupyter Notebook 时,它将输出一个带有类似以下内容的信息:
[I 10:54:20.170 NotebookApp] Serving notebooks from local directory: /path/to/notebooks
[I 10:54:20.170 NotebookApp] The Jupyter Notebook is running at: http://localhost:8888/?token=token
[I 10:54:20.170 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
这里我们需要注意的是第三行的内容,它告诉我们要关闭 Jupyter Notebook,可以使用 Control-C
快捷键,按两次跳过确认。
按下 Control-C
后,终端将输出一些类似以下内容的信息:
^C[I 10:56:01.264 NotebookApp] interrupted
Serving notebooks from local directory: /path/to/notebooks
0 active kernels
The Jupyter Notebook is running at:
http://localhost:8888/?token=token
Shutdown this notebook server (y/[n])?
在这里,它会询问我们是否要关闭 Notebook 服务。我们可以按下 y
,按回车键确认关闭。
当我们在终端中启动 Jupyter Notebook 时,我们还可以将一个命令行参数传递给它来关闭服务,如下所示:
jupyter notebook stop
这个命令将告诉 Jupyter Notebook 停止运行,同时终端将输出一些类似以下内容的信息:
Shutting down server on http://localhost:8888
然后 Jupyter Notebook 服务将关闭。
以上就是两种在终端中关闭 Jupyter Notebook 的方法。如果您在使用 Jupyter Notebook 时需要停止服务,可以按下 Control-C
快捷键,或者运行 jupyter notebook stop
命令。