How to Install Jupyter Notebook on Windows 10/11 using Python (2026) | Step-by-Step Guide
Below is a step-by-step guide to install Jupyter Notebook on Windows 10/11 using Python:
Step 1: Install Python
-
Go to the Official Python Website:
https://www.python.org -
Download Python:
- Click 'Downloads' at the top.
- The site will automatically suggest the latest Python version for Windows.
- Click 'Python 3.14.3' to download
python-3.14.3-amd64.exefile. - Make sure it says 'Windows installer (.exe)'.
-
Run the Installer:
- Open the downloaded
python-3.14.3-amd64.exefile by double-clicking on it. - Check the box 'Add Python.exe to PATH'.
- Click 'Install Now'.
- Once installation is complete, click 'Close'.
- Open the downloaded
-
Verify Python Installation:
- Open Command Prompt: Press
Windows + R, typecmd, pressEnter. - In Command Prompt, run:
python --versionIf Python is installed, you should see:
Python 3.14.3- Again, run:
py --versionIf Python Launcher is installed, you should see:
Python 3.14.3 - Open Command Prompt: Press
Step 2: Upgrade pip
- Open Command Prompt: Press
Windows + R, typecmd, pressEnter. - Run the following command:
python -m pip install --upgrade pip
Step 3: Install Jupyter Notebook
- Open Command Prompt: Press
Windows + R, typecmd, pressEnter. - Run the following command to install using pip:
pip install notebook
This installs Jupyter Notebook and required dependencies.
Step 4: Launch Jupyter Notebook
- Open Command Prompt: Press
Windows + R, typecmd, pressEnter. - Run the following command:
jupyter notebook
A browser window opens automatically, and you’ll see the Jupyter dashboard.








Comments
Post a Comment