2016-04-09 14 views
5

Quando sono tenta di eseguire jupyter mi mostrare errore: -non può in grado di avviare jupyter

ERROR: the notebook server could not be started because no available port could be found.

Terminal Logs è la seguente: -

[I 20:52:08.747 NotebookApp] The port 8888 is already in use, trying another random port. 
[I 20:52:08.748 NotebookApp] The port 8889 is already in use, trying another random port. 
[I 20:52:08.748 NotebookApp] The port 8890 is already in use, trying another random port. 
[I 20:52:08.749 NotebookApp] The port 8891 is already in use, trying another random port. 
[I 20:52:08.750 NotebookApp] The port 8892 is already in use, trying another random port. 
[I 20:52:08.750 NotebookApp] The port 8988 is already in use, trying another random port. 
[C 20:52:08.779 NotebookApp] ERROR: the notebook server could not be started because no available port could be found. 

E, ho anche controllato il mio sistema per verificare quale processo è in esecuzione su quella porta e ho trovato che nessun processo è in esecuzione e tutte queste porte non sono utilizzate da alcun processo. Ma ottieni ancora quell'errore.

enter image description here

ho anche cambiato la porta predefinita jupyter a vari altri porti, ma ancora ottenere lo stesso errore.

risposta

0

L'errore potrebbe non essere causato da jupyter, ma dal sistema.

Per cancellare questo, provare ad aprire un semplice server http sulla porta 8888 e vedere se il messaggio non riuscito è lo stesso.

È possibile provare uno dei seguenti comandi per avviare un server http:

python -m SimpleHTTPServer 8888 (Python2) 
python -m http.server 8888 (Python3) 
Problemi correlati