Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

After installing anaconda - command not found: jupyter

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

like image 890
Ludwig Avatar asked Sep 29 '16 20:09

Ludwig


1 Answers

You need to activate your conda environment (source bin/activate) and then do

$ pip install jupyter # Alternatively, you can do `conda install jupyter` $ jupyter notebook # to actually run the notebook server 
like image 141
ffledgling Avatar answered Oct 08 '22 10:10

ffledgling