After installing with pip install jupyter, terminal still cannot find jupyter notebook.
Ubuntu simply says command not found
The only thing that worked me is to export to PATH the Python version that is related to the pip3 of course :) (after a lot of struggling) just run:
which pip3
you should get something like (in Mac):
/Library/Frameworks/Python.framework/Versions/3.6/bin/pip3
Now run:
export PATH=/Library/Python/3.6/bin:$PATH
If it works for you :) just add it to your
bashrc or zshrc