Celeb Glow
news | March 13, 2026

Why jupyter notebook won't start?

I installed jupiter notebook via macOS console:

pip3 install notebook

but when trying to launch (jupyter notebook/Jupyter notebook) the console writes that the command was not found:

zsh: command not found: jupyter

how to fix it? what settings should I check? macOS Monterey python 3.9 .bash_profile contains: PATH="/Library/Frameworks/" export PATH

1

1 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 --yes

remove env

conda remove -n your_jupyter_env --all --yes

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy