There is an instance of anaconda navigator already running error

纵然是瞬间 提交于 2020-01-01 02:37:05

问题


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:

  1. open a cmd window;
  2. use command tasklist | findstr "pythonw" to find the pid of pythonw, like 37200;
  3. 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.

  1. tasklist | findstr "pythonw" The PID of the processes will get displayed.

  2. 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.

  1. Open Task Manager or use shortcut key Ctrl+Shift+Esc.
  2. Find Python process in the list.
  3. 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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!