2016-07-14 22 views
0

Die folgende Ausgabe erschien zu starten, wenn ich eine Instanz des Jupyter zu starten versuchte botebook:Verwirrende Fehler beim Versuch, die Jupyter Notebook

C:\Users\CaitlinG>jupyter notebook 
Traceback (most recent call last): 
    File "c:\users\caitling\appdata\local\programs\python\python35\lib\runpy.py", 
line 184, in _run_module_as_main 
    "__main__", mod_spec) 
    File "c:\users\caitling\appdata\local\programs\python\python35\lib\runpy.py", 
line 85, in _run_code 
    exec(code, run_globals) 
    File "C:\Users\CaitlinG\AppData\Local\Programs\Python\Python35\Scripts\jupyter 
-notebook.exe\__main__.py", line 5, in <module> 
    File "c:\users\caitling\appdata\local\programs\python\python35\lib\site-packag 
es\notebook\notebookapp.py", line 31, in <module> 
    from zmq.eventloop import ioloop 
    File "c:\users\caitling\appdata\local\programs\python\python35\lib\site-packag 
es\zmq\__init__.py", line 37, in <module> 
    _libzmq = ctypes.cdll.LoadLibrary(bundled[0]) 
    File "c:\users\caitling\appdata\local\programs\python\python35\lib\ctypes\__in 
it__.py", line 425, in LoadLibrary 
    return self._dlltype(name) 
    File "c:\users\caitling\appdata\local\programs\python\python35\lib\ctypes\__in 
it__.py", line 347, in __init__ 
    self._handle = _dlopen(self._name, mode) 
OSError: [WinError 126] The specified module could not be found 

Ich verwende Windows 10 und Python 3.5.2. Ich installierte das Paket zusammen mit seinen Abhängigkeiten über: pip3 install "ipython [notebook]" --upgrade

Der oben erwähnte Prozess lief ohne Vorfall, aber ich bin verwirrt, warum das Problem aufgetreten ist.

Danke.

Antwort

3

Es scheint ein Problem mit pyzmq 15.3 zu sein. eine frühere Version der Installation funktionierte für mich:

pip install pyzmq==15.2 

See: https://github.com/jupyter/help/issues/62

Viel Glück!

+0

Willkommen bei Stack Overflow! Während dies theoretisch die Frage beantworten könnte, [wäre es vorzuziehen] (// meta.stackoverflow.com/q/8259), hier die wesentlichen Teile der Antwort aufzunehmen und den Link als Referenz bereitzustellen. – manetsus