Installation
- Go here to download the
Miniconda 3 Installer
for your operating system
- Once the download has finished run the installer:
- MacOS: Navigate to Downloads (or wherever you downloaded this) and double click the
.pkg
file
- Windows: Navigate to Downloads (or wherever you downloaded this) and double click the
.exe
file
- Follow the installation prompts
- Update
Miniconda3
:
- MacOS: In the Terminal
conda update conda
- Windows: In Anaconda Powershell Prompt (miniconda3) execute
conda update conda
- Agree to the installation prompts
Environment Setup
- Create and name a new Python environment
conda create -n physcpu1 python
- Activate the environment
conda activate physcpu1
- Install Jupyter Lab via pip
pip install jupyterlab
- Run Jupyter Lab
jupyter lab
- Quick tour of Jupyter Lab
- From home page find and click on the
Quit
button to shutdown the server
Next Post