如何使用Tensorflow2杀死Tensorboard(Jupyter,Win)

时间:2019-05-08 08:51:36

标签: tensorflow tensorboard

很抱歉出现noob问题,但是如何杀死Tensorflow PID?

它说:

Reusing TensorBoard on port 6006 (pid 5128), started 4 days, 18:03:12 ago. (Use '!kill 5128' to kill it.)

但是我在Windows Taks Manager中找不到任何PID 5128。在jupyter中使用'!kill 5128'时,错误返回无法找到comand kill。在Windows cmd或conda cmd中使用它也不起作用。

感谢您的帮助。

2 个答案:

答案 0 :(得分:3)

如果您清除AppData/Local/Temp/.tensorboard-info的内容并删除日志,则应该可以重新开始

答案 1 :(得分:1)

在Windows cmd中,键入tasklist | more,它将显示系统中正在运行的所有进程,并找到 tensorboard.exe enter image description here

您可以使用进程ID终止进程

taskkill /F /PID 20036

您可以按其名称杀死该进程

taskkill /IM "tensorboard.exe" /F