How to Install JupyterLab on Windows 10/11 using Miniconda (2026) | Step-by-Step Guide
Below is a step-by-step guide to install JupyterLab on Windows 10/11 using Miniconda:
Step 1: Download Miniconda
- Go to the Miniconda official site:
https://www.anaconda.com/docs/getting-started/miniconda/main - Click on 'anaconda.com/download' link.
- Click on 'Skip Registration' link.
- Under Windows and Miniconda section, click on
'Windows 64-Bit Graphical Installer' to download
Miniconda3-latest-Windows-x86_64.exe.
Step 2: Install Miniconda
- Double-click the
.exefile and run the installer. - Click 'Next' ➡️ and then 'I Agree' on the license agreement screen.
- Choose Installation Type: Select 'Just Me' (recommended) and click 'Next'.
- Choose Installation Location: Default is fine
(
C:\Users\YourUsername\miniconda3) and click 'Next'. - In Advanced Options, check the boxes:
- Register Miniconda as default Python
- Clear package cache upon completion
- Click 'Install'.
- Once installation is complete, click 'Next' ➡️ 'Finish'.
Step 3: Launch Miniconda
Open 'Anaconda Prompt' from the Start menu.
Step 4: Verify Installation
- Open 'Anaconda Prompt' and run:
conda --version
- You should see output similar to:
conda 26.1.1
Step 5: Update Conda
- Run the command to update Conda:
conda update -n base -c defaults conda
- Press 'a' when prompted.
- Press 'y' when prompted.
Step 6: Create Environment
- Run the command to create an environment:
conda create -n myenv python=3.11
- Activate the environment:
conda activate myenv
Step 7: Install JupyterLab
- Run the command to install JupyterLab:
conda install -c conda-forge jupyterlab
This installs JupyterLab and its dependencies.
- Launch JupyterLab:
jupyter lab
This will start a local server and open JupyterLab in your browser (usually at
http://localhost:8888).
Comments
Post a Comment