There is an instance of anaconda navigator already running error

后端 未结 8 2097
不思量自难忘°
不思量自难忘° 2021-02-02 11:49

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 ins

8条回答
  •  野的像风
    2021-02-02 12:16

    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.

提交回复
热议问题