I met the same problem a few days ago. I found the anaconda navigator will start a process called pythonw. So the following is my solution:
- open a cmd window;
- use command
tasklist | findstr "pythonw"to find the pid of pythonw, like 37200; - use command
tskill 37200to kill the process.
By the way, my OS is Windows.