Warum startet das Jupyter-Notebook nicht?

Warum startet das Jupyter-Notebook nicht?

Ich habe Jupiter Notebook über die macOS-Konsole installiert:

pip3 install notebook

aber beim Versuch, (Jupyter Notebook/Jupyter Notebook) zu starten, schreibt die Konsole, dass der Befehl nicht gefunden wurde:

zsh: command not found: jupyter

wie kann ich das beheben? welche Einstellungen sollte ich überprüfen? macOS Monterey Python 3.9 .bash_profile enthält: PATH="/Library/Frameworks/Python.framework/Versions/3.9/bin:${PATH}" export PATH

Antwort1

Keine Panik, es wird empfohlen,conda Spickzettelum die Systemumgebung sauber zu halten

Umgebung erstellen

conda create -n your_jupyter_env python pip jupyter --yes

Umgebung entfernen

conda remove -n your_jupyter_env --all --yes

verwandte Informationen