Skip to content

Instantly share code, notes, and snippets.

@KPB3rd
Last active March 24, 2024 02:19
Show Gist options
  • Select an option

  • Save KPB3rd/a237695e736e8ae9d1aa0540fc222fe5 to your computer and use it in GitHub Desktop.

Select an option

Save KPB3rd/a237695e736e8ae9d1aa0540fc222fe5 to your computer and use it in GitHub Desktop.
Install Jupyter on Mac
// Install conda
mkdir -p ~/miniconda3
curl https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-arm64.sh -o ~/miniconda3/miniconda.sh
bash ~/miniconda3/miniconda.sh -b -u -p ~/miniconda3
rm -rf ~/miniconda3/miniconda.sh
~/miniconda3/bin/conda init bash
~/miniconda3/bin/conda init zsh
// Make virtual env
conda create -n jupyter python ipython jupyterlab nodejs numpy matplotlib scipy ipywidgets
conda activate jupyter
// Start service
jupyter lab
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment