How to Uninstall Jupyter Notebook installed using Miniconda on Windows 10/11 (2026) | Step-by-Step Guide

Below is a Step-by-Step Guide to Uninstall Jupyter Notebook installed using Miniconda on Windows 10/11:

Step 1: Launch Miniconda

Open Anaconda Prompt from the Start menu.

Step 2: Activate Environment

Run the command to activate the environment:

conda activate myenv

Step 3: Uninstall Jupyter Notebook

  1. Run the command to uninstall Jupyter Notebook:
conda remove notebook
  1. Press y to confirm.

This removes Jupyter Notebook from that environment.

Step 4: Clean Conda Cache

Run the command to clear conda cache:

conda clean --all

Step 5: Verify Uninstallation

  1. Run the command to verify uninstallation:
jupyter notebook

You should see output similar to:

'jupyter' is not recognized as an internal or external command.
  1. Deactivate the environment:
conda deactivate

Comments

Popular posts from this blog

How to Install Geany 2.1 on Windows 10/11 (2026) | Step-by-Step Guide

How to Uninstall Bluefish 2.2.19 on Windows 10/11 (2026) | Step-by-Step Guide

How to Install Visual Studio 2026 on Windows 10/11 | Step-by-Step Guide