How to Uninstall JupyterLab installed using Python on Windows 10/11 (2026) | Step-by-Step Guide

Below is a Step-by-Step Guide to Uninstall JupyterLab installed using Python on Windows 10/11:

Step 1: Open Command Prompt

  1. Press Win + R
  2. Type cmd
  3. Press Enter

Step 2: Check if JupyterLab is Installed

Run the following command:

pip show jupyterlab

If installed, you will see details for JupyterLab.

Step 3: Uninstall JupyterLab

Run the following command:

pip uninstall jupyterlab

Type y and press Enter when prompted.

Step 4: Verify Removal

Run the following command:

jupyter lab

If uninstalled correctly, you will see a message like:

Jupyter command 'jupyter-lab' not found.

Step 5: Delete Leftover Files

Delete the following folders if they are present:

%USERPROFILE%\.ipython
%USERPROFILE%\.jupyter
%APPDATA%\jupyter

Comments