Last active
March 24, 2024 02:19
-
-
Save KPB3rd/a237695e736e8ae9d1aa0540fc222fe5 to your computer and use it in GitHub Desktop.
Install Jupyter on Mac
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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