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
Here is the step you can use to solve this issue quickly.
Ctrl+Shift+Esc
.Python
process in the list.End task
.Then open Anaconda Navigator again.
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.
We can use either of below options to resolve the issue.
1. tasklist | findstr "pythonw"
tskill <pid>
2. Also we can End the task names 'Python' from Task Manager.
Now open the Anaconda Navigator again. It may take a while to open.
I got the same problem on windows 10, and all the previous answers and commands to taskkill didn't work and gave me the error "Access denied".
I found out that when you turn off your computer in windows 10, by default it doesn't really turn off but instead it hibernates, so it doesn't really "kill" all the tasks running.
Therefore my solution:
This will successfully kill all running tasks, including pythonw
, and hopefully solve your problem.
I got the same error in MAC. logoff & login did not resolve the issue and the below command solved my issue in mac. Restart not required.
killall python
1.In ubuntu terminal
$ anaconda-navigator --reset
$ anaconda-navigator