TLDR: Can you install Jupyterlab on a mac using homebrew in only two steps?
- install homebrew
- brew install jupyterlab
- (launch jupterlab from the terminal)
I will be teaching a course this summer where my students need jupyterlab. I tell the windows users to simply install anaconda. I just used homebrew on my mac. I tried searching for a tutorial on YouTube and they all want to either use Anaconda or do something complicated.
Gemini tells me to do what seems like the simplest path and that is exactly the steps I was thinking:
-
Install Homebrew (if not already installed):
Open your terminal and paste:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" -
Install JupyterLab:
Run the following command:
brew install jupyterlab -
Launch JupyterLab:
Type the following in your terminal to start the server and open it in your default browser:
jupyter lab
I don’t want to go through the hassle of uninstalling homebrew on my mac. I uninstalled and reinstalled jupyterlab using brew and that went fine. I just don’t want to turn my students off to homebrew if this somehow goes wrong.
Thanks,
Ryan