How to Install Jupyter Notebook on Windows 10/11 using Miniconda (2026) | Step-by-Step Guide
Below is a Step-by-Step Guide to Install Jupyter Notebook 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\miniconda3and 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:
conda update -n base -c defaults conda
- Press 'a' when prompted.
- Press 'y' when prompted.
Step 6: Create Environment
- Run the command:
conda create -n myenv python=3.11
- Activate the environment:
conda activate myenv
Step 7: Install Jupyter Notebook
- Run the command to install Jupyter Notebook:
conda install notebook
This installs Jupyter Notebook and its dependencies.
- Run the command to launch Jupyter Notebook:
jupyter notebook
This will start a local server and open Jupyter in your browser
(usually at http://localhost:8888).
Comments
Post a Comment