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
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.
one of the following will solve your issue in ubuntu:
killall Anaconda-Navigator
anaconda-navigator --reset
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
Here is the step you can use to solve this issue quickly.
- Open Task Manager or use shortcut key
Ctrl+Shift+Esc. - Find
Pythonprocess in the list. - Kill those processes by clicking on it and click
End task.
Then open Anaconda Navigator again.
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.
来源:https://stackoverflow.com/questions/50079641/there-is-an-instance-of-anaconda-navigator-already-running-error