How to Uninstall JupyterLab installed using Miniconda on Windows 10/11 (2026) | Step-by-Step Guide
Below is a step-by-step guide to uninstall JupyterLab 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 your environment:
conda activate myenv
Step 3: Uninstall JupyterLab
- Run the command to uninstall JupyterLab:
conda remove jupyterlab
- Press 'y' to confirm.
This removes JupyterLab from the selected 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 lab
- 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