2016-04-09 25 views
5

bana hata gösterememesi Can: - aşağıdakijupyter start jupyter çalıştırmayı olduğumda

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

Terminali Kayıtlar gibi: -

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

Ve ben de kontrol benim Bu bağlantı noktasında hangi işlemin çalıştığını kontrol etmek için bir işlem olup olmadığını ve hiçbir işlemin çalışmadığını ve tüm bu bağlantı noktalarının herhangi bir işlem tarafından kullanılmadığını tespit ettim. Ama yine de bu hatayı al.

enter image description here

Ben de diğer çeşitli bağlantı noktasına jupyter varsayılan portu değişti, ama hala aynı hatayı alıyorum.

cevap

0

Hata, jupyter tarafından değil, sisteminizde neden olabilir. Bu temizlemek için, 8888 numaralı bağlantı noktasında basit bir http sunucusunu açmayı ve başarısız iletinin aynı olup olmadığını görmeyi deneyebilirsiniz.

Bir http sunucusu başlatmak için aşağıdaki komutlardan birini deneyebilirsiniz:

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