There is an instance of anaconda navigator already running error

限于喜欢 提交于 2019-12-04 01:55:12
Zhikun Luo

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.

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.

  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.

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.

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