Error “Unable to open Jupyter Notebook: Port 8888 is already in use”

后端 未结 3 471
深忆病人
深忆病人 2021-01-03 04:54

I am getting following error when I run Jupyter Notebook:

(base) C:\\Users\\ramne>jupyter notebook
[I 01:19:00.648 NotebookApp] The port 8888 is already i         


        
3条回答
  •  情话喂你
    2021-01-03 05:31

    On windows, you can kill the Jupyter notebook process with taskkill. First display the list of processes with

    tasklist                                   
    

    Then kill the process with:

    taskkill /F /PID  __process_id_number__
    

    Then restart the notebook with:

    jupyter notebook
    

提交回复
热议问题