Why jupyter notebook won't start?
I installed jupiter notebook via macOS console:
pip3 install notebookbut when trying to launch (jupyter notebook/Jupyter notebook) the console writes that the command was not found:
zsh: command not found: jupyterhow to fix it? what settings should I check? macOS Monterey python 3.9 .bash_profile contains: PATH="/Library/Frameworks/" export PATH
11 Answer
Don't panic, it is recommended to use conda cheatsheet to keep the system environment clean
create env
conda create -n your_jupyter_env python pip jupyter --yesremove env
conda remove -n your_jupyter_env --all --yes