Previously my anaconda navigator was not responding so I have rebooted my computer and now when I am trying to open anaconda navigator it pop-ups an error with \"there is an ins
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:
tasklist | findstr "pythonw" to find the pid of pythonw, like 37200;tskill 37200 to kill the process.By the way, my OS is Windows.