Issue
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
Solution
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.
Answered By - Zhikun Luo
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.