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
The following steps worked for me in windows. You can do the following.
tasklist | findstr "pythonw" The PID of the processes will get displayed.
tasklist | findstr "pythonw"
taskkill /pid "PID" (without quotes) /f
This will successfully kill the Anaconda Navigator task.