📜  杀死 tensorboard 进程 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:52.098000             🧑  作者: Mango

代码示例1
# You can kill the process by its ID, supposed the ID is 21983

taskkill /F /PID 21983

# or
# Kill it by the process name

taskkill /IM "tensorboard.exe" /F

Also don't forget to clean "AppData/Local/Temp/.tensorboard-info"