There is an instance of anaconda navigator already running error

后端 未结 8 1885
不思量自难忘°
不思量自难忘° 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:37

    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.

    0 讨论(0)
  • 2021-02-02 12:38

    one of the following will solve your issue in ubuntu:

    killall Anaconda-Navigator 
    
    anaconda-navigator --reset
    
    0 讨论(0)
提交回复
热议问题