I'm trying to run Jupyter notebook on Mac OS Catalina. I followed the basic instructions:
pip3 install jupyter
I tried everything that is mentioned in the other answers here on stack overflow. I have edited the .bash_profile file, and I have tried to start the notebook with
~/local/bin/jupyter
But nothing is working. My .bash_profile looks like this:
export PATH="/usr/local/mysql/bin:/usr/local/bin:/usr/local/git/bin:$PATH"
# Setting PATH for Python 3.7
# The original version is saved in .bash_profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/3.7/bin:${PATH}"
export PATH
How can I run Jupyter Notebook on Mac OS Catalina?