After installing anaconda - command not found: jupyter

I installed anaconda on my MAC laptop and tried to run a jupyter laptop to install it, but I get an error. Jupyter command not found.

+10
python jupyter-notebook anaconda
source share
7 answers

You need to activate the cond environment ( source bin/activate ), and then do

 $ pip install jupyter $ jupyter notebook # to actually run the notebook server 
+12
source share

Add $HOME/anaconda3/bin to your $PATH and jupyter-notebook . There are tons of other binaries you can find in this folder.

+3
source share

@ffledgling anwser does not work for me. What decided was to install jupyter using conda:

conda install jupyter

It did the trick. Immediately after completing the installation, I went with

jupyter notebook

as my next command and saw the server settings and opening the browser page.

+2
source share

I had the same issue on my Mac OS. I'm also new to Python, so forgive me if this is an obvious solution. For me, it decided to install Python with the option "install only for me", and not from the hard drive. If he tells you that you cannot, reinstall it. After that, the jupyter notebook command opened without problems. Hope this can help someone!

how

Installation screenshots

+1
source share

I ran into the same problem, try this instead

 jupyter-notebook 
0
source share

You must first have conda in your PATH environment. You can achieve this by looking at this answer .

Now you just need to run jupyter notebook .

0
source share

It can be as simple as opening a new terminal window.

0
source share

All Articles