Jupyter Lab Installation
Table Of Contents:
- Download & Install Python.
- Verify Python Installation.
- Verify ‘pip’ Installation.
- Install JupyterLab.
- Verify JupyterLab Installation.
- Run JupyterLab.
(1) Download & Install Python
- Download the latest version of the Python from the below link.
https://www.python.org/downloads/


(2) Verify Python Installation
- After download and install you need to verify whether its installed correctly or not.
- Open a command prompt and run the below command to verify the Python installation.
python – version

(3) Verify ‘pip’ Installation
pip – version

(4) Install JupyterLab.
- Once Python and pip are installed, install Jupyter Lab using:
pip install jupyterlab

(5) Verify Jupyter Lab Installation
- Check if Jupyter Lab is installed:
jupyter lab – version

(6) Run Jupyter Lab
- To start Jupyter Lab, simply run:
jupyter lab

