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
- Run the command to uninstall Jupyter Notebook:
conda remove notebook
- 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
- Run the command to verify uninstallation:
jupyter notebook
You should see output similar to:
'jupyter' is not recognized as an internal or external command.
- Deactivate the environment:
conda deactivate
Comments
Post a Comment