如何使用anaconda停止jupyter服务器

问题描述 投票:0回答:2

我正在使用anaconda navigator启动jupyter笔记本服务器,但是当我想停止服务器时,我找不到方法来做到这一点。

因为我使用 anaconda navigator 时没有终端,所以无法使用 Ctrl +c 来停止服务器。 我在 Windows 上运行。

如有任何帮助,我们将不胜感激^_^

python anaconda jupyter
2个回答
7
投票

您可以单击关闭 anaconda navigator 时出现的复选框。

Refer Snapshot here

如果您已关闭导航器,请打开

cmd
并输入
jupyter-notebook list

然后您可以使用以下命令终止端口:

netstat -o -n -a | findstr :3000
   TCP    0.0.0.0:3000      0.0.0.0:0              LISTENING       3116

taskkill /F /PID 3116

用正在运行的端口替换 findstr 参数。 有关如何在 Windows 中终止进程的更多信息


0
投票

在您的终端中:

jupyter notebook list

此命令显示所有活动的 Jupyter Notebook 服务器。

确定您要停止的服务器的端口号(例如 8888)并运行:

jupyter notebook stop 8888

请确保您的终端具有活跃的Conda环境

© www.soinside.com 2019 - 2024. All rights reserved.