问题
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 instance of anaconda navigator already running".
OS: Windows 10

回答1:
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 37200
to kill the process.
By the way, my OS is Windows.
回答2:
one of the following will solve your issue in ubuntu:
killall Anaconda-Navigator
anaconda-navigator --reset
回答3:
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
回答4:
The following steps worked for me in windows. You can do the following.
tasklist | findstr "pythonw"
The PID of the processes will get displayed.taskkill /pid "PID" (without quotes) /f
This will successfully kill the Anaconda Navigator task.
回答5:
Here is the step you can use to solve this issue quickly.
- Open Task Manager or use shortcut key
Ctrl+Shift+Esc
. - Find
Python
process in the list. - Kill those processes by clicking on it and click
End task
.
Then open Anaconda Navigator again.
来源:https://stackoverflow.com/questions/50079641/there-is-an-instance-of-anaconda-navigator-already-running-error