Reputation: 839
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
Upvotes: 37
Views: 72776
Reputation: 1
Faced the same problem. This worked for me. Open CMD and Find the tasks using tasklist | findstr "pythonw" Try to kill the tasks using taskkill /pid "processid" /f (Processid is the id u got from tasklist) Switch off wifi and try to open anaconda navigator
Upvotes: 0
Reputation: 183
1.In anaconda prompt
$ anaconda-navigator --reset
$ anaconda-navigator
Upvotes: 7
Reputation: 786
I loaded Process Hacker software on Windows 10 and in this software, I search for pythons.exe process, right click and select Terminate. This software is freeware. I am trying to help those who don’t want to type dos command.
Upvotes: 0
Reputation: 1
For those who killed the Python processes but the GUI still doesn't show, for me the .condarc file was missing in my user folder... so I created the .condarc file and left it blank, killed the python process, then relaunched and it worked.
My issue was after installing for the first time
Upvotes: 0
Reputation: 1
I used these processes and it solved my problem :) open task manager > click processes on the menu > click on "pythonw" > click End process is may solve your problem
Upvotes: 0
Reputation: 167
[With images] The instructions Below works flawlessly in Windows 10.
CMD
(command prompt) with administrator privilegestasklist | findstr "pythonw"
taskkill /f /pid <PID NUMBER>
Happy Learning :):)
Upvotes: 10
Reputation: 11
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.
Upvotes: 1
Reputation: 69
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.
Upvotes: 0
Reputation: 501
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
Upvotes: 42
Reputation: 11
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.
Upvotes: 1
Reputation: 788
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.
Upvotes: -1
Reputation: 1542
one of the following will solve your issue in ubuntu:
killall Anaconda-Navigator
anaconda-navigator --reset
Upvotes: 5
Reputation: 506
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.
Upvotes: 49