0

I want to start working by jupyter notebook. I am using Mac. I did the following commands in terminal.

pip install jupyterlab

pip install notebook

They were installed well now in terminal I type :

jupyter notebook

And get :

-bash: jupyter: command not found

3 Answers3

0

try anaconda, the best and easiest way to use jupyter notebook

Zhefu PENG
  • 78
  • 5
  • To follow on that good advice by @Zhefu Peng, see my first comment [here](https://stackoverflow.com/q/60724227/8508004) for some useful links.. – Wayne Mar 17 '20 at 16:22
0

Try this:

pip install --upgrade notebook

Then run

jupyter notebook
ywbaek
  • 2,971
  • 3
  • 9
  • 28
0

In case, you may have some python version inconsistency, always install PiPy packages with this command:

    python -m pip install jupyter

Most of time, this type of installation, resolve many issues.

If your issue not solved, refer to this question, this is about your similar problem with Jupyter in Windows.