Reputation: 13
I am new to Jupyter Notebook. I mainly use it for my Python class. I installed Jupyter Notebook via Anaconda. So, to open Jupyter Notebook, I have to open the anaconda navigator every time. Is there any way to bypass this in MacOS and open Notebook directly? I have tried making a terminal shell script with the following code
/Users/utkarsharyan/opt/anaconda3/pkgs/notebook-6.4.2-py38hecd8cb5_0/bin/jupyter_mac.command ; exit;
But it gave this error
(base) utkarsharyan@Utkarshs-MacBook-Air ~ % /Users/utkarsharyan/opt/anaconda3/pkgs/notebook-6.4.2-py38hecd8cb5_0/bin/jupyter_mac.command ; exit;
/Users/utkarsharyan/opt/anaconda3/pkgs/notebook-6.4.2-py38hecd8cb5_0/bin/jupyter_mac.command: /Users/utkarsharyan/opt/anaconda3/pkgs/notebook-6.4.2-py38hecd8cb5_0/bin/jupyter-notebook: /opt/concourse/worker/volumes/live/09f385b3-041f-4619-6576-50f6b5465a28/volume: bad interpreter: No such file or directory
Saving session...
...copying shared history...
...saving history...truncating history files...
...completed.
[Process completed]
What should I do?
Upvotes: 0
Views: 2083
Reputation: 31
There are many ways you might go about doing this. All of them will be more or less complicated to do because Jupyter itself isn't built to be used as a desktop app.
If you want to try a few DIY ways, this one has a few answers that might be helpful: Open an ipython notebook via double-click on osx
If you prefer not to deal with extra complications, a mac app for Jupyter would be your best bet.
It's made for macOS and iOS. Super easy to use with Jupyter notebooks and Python. It's currently in the beta stage so it's definitely something you can try for a Python class.
Upvotes: 1