Python Forum

Full Version: jupyter notebook
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi,
I installed jupyter notebook through pip.
$ pip install jupyterlab
$ jupyter notebook
[C 14:25:06.690 NotebookApp] No such file or directory: /Users/apple/notebook
/// when i set the path variable to the jupyter-notebook exec , the below command runs
$jupyter-notebook
/// it starts the server but displays the following error ,
/bin/sh: osascript: command not found


Please help ! i've been stuck with this for a few hours.
Thank you.

After hours of breaking my head :
1. which python
found out that was using python instead of python3 where the actual jupyter notebook has been installed.
2. python3 -m jupyter notebook
this was the magical command that worked.