2016-04-09 76 views
5

を開始することができません: - :私はまた私をチェックし、は、私は私にエラーを表示し、それjupyter実行しようとしていた場合jupyter

[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. 

そして -

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

ターミナルログは以下の通りです。どのプロセスがそのポートで実行されているかを調べるために、プロセスが実行されておらず、これらのポートはすべてプロセスによって使用されていないことがわかりました。しかし、まだそのエラーを取得します。

enter image description here

私はまた、様々な他のポートにjupyterのデフォルトポートを変更しましたが、まだ同じエラーを取得します。

答えて

0

エラーは、jupyterではなく、システムによって発生する可能性があります。

これをクリアするには、ポート8888で単純なhttpサーバーを開き、失敗したメッセージが同じかどうかを確認します。

あなたはhttpサーバを起動するには、次のコマンドのいずれかを試すことができます。

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