Antworten:
Für 4.0 und höher Sie müssen die Notebook-App separat von https://github.com/jupyter/notebook installieren
pip install jupyter
pip3 install jupyter
wenn Sie sich auf einem System befinden, auf dem Python 3 die Standardeinstellung ist
ipyton notebook <notebook>
dies bei Ihnen nicht funktioniert, hat @meduz in einem Kommentar unten erwähnt, dass das Ausführen jupyter notebook <notebook
stattdessen möglicherweise funktioniert. Das hat das Problem für mich gelöst.
pip3.6 install jupyter
habe den Job gemacht
conda install jupyter
installiert den neuesten Jupyter zusammen mit anderen erforderlichen Abhängigkeiten
Die folgenden Pakete werden heruntergeladen:
package | build
---------------------------|-----------------
mistune-0.7 | py27_0 186 KB
jinja2-2.8 | py27_0 263 KB
jupyter_core-4.0.3 | py27_0 25 KB
tornado-4.2.1 | py27_0 515 KB
jupyter_client-4.0.0 | py27_0 88 KB
nbformat-4.0.0 | py27_0 112 KB
ipykernel-4.0.3 | py27_0 111 KB
nbconvert-4.0.0 | py27_0 266 KB
jupyter_console-4.0.0 | py27_0 22 KB
notebook-4.0.1 | py27_0 4.2 MB
qtconsole-4.0.0 | py27_0 120 KB
ipywidgets-4.0.2 | py27_0 93 KB
jupyter-1.0.0 | py27_0 2 KB
------------------------------------------------------------
Total: 6.0 MB
Ich habe das gleiche Problem beim Upgrade von ipython. Dies ist ein Fehler, der mit der neuesten 4
Version verknüpft ist. Ich empfehle Ihnen, zur stabilen Version zurückzukehren 3.2.1
:
pip uninstall -y ipython
pip install ipython==3.2.1
-y
Option zeigt "Ja, ich möchte deinstallieren" ohne Interaktion anpip install jupyter
.
jupyter notebook
Befehl anstelle von ipython notebook
einem zu verwenden.
Diese beiden Befehle beheben die meisten Probleme für Sie:
sudo pip install --upgrade setuptools pip
sudo pip install --upgrade "ipython[all]"
pip install jupyter
reicht aus, um den Fehler zu beheben und das Notebook zu starten.