I would like to use Tensorboard on a Python application. When I start it using the command line of PyCharm in Windows 10, I get the following message:
"Reusing TensorBoard on port 8111 (pid 10180), started 0:23:16 ago. (Use '!kill 10180' to kill it.)
This means, that I have already used this port number. Unfortunately the instructions don't work. I want to kill the process on port 8111 (pid 10180). So I tried several commands (from this website https://winaero.com/kill-process-windows-10/#Kill_a_process_using_PowerShell) that all did not work, with and without exlamation point:
!taskkill /pid 10180
!taskkill /F /pid 10180
!taskkill 10180
!taskkill pid 10180
!Stop-Process -ID 10180 -Force
!Stop-Process -pid 10180 -Force
Would anyone mind telling me how to kill the process such that I can start Tensorboard again on the same port? I'll appreciate every comment.