How to Uninstall Jupyter Notebook Installed using Python on Windows 10/11 (2026) | Step-by-Step Guide
Below is a step-by-step guide to uninstall Jupyter Notebook installed using Python on Windows 10/11:
Step 1: Open Command Prompt
- Press
Win + R - Type
cmd - Press
Enter
Step 2: Check if Jupyter Notebook is Installed
Run the following command:
pip show notebook
If installed, you’ll see details for Jupyter Notebook.
Step 3: Uninstall Jupyter Notebook
Run the following command:
pip uninstall notebook
Type y and press Enter when prompted.
Step 4: Verify Removal
Run the following command:
jupyter notebook
If uninstalled correctly, you’ll see:
Jupyter command 'jupyter-notebook' not found
Step 5: Delete Leftover Files
Delete the following folders if present:
%USERPROFILE%\.ipython
%APPDATA%\jupyter




Comments
Post a Comment