Open command prompt and check the python version using the command “python --version”
Install pip using the command “pip install virtualenv”
Upgrade pip using the command “python -m pip install -upgrade pip”
Create a virtual environment called opencv using the command (“virtualenv opencv”)
Move to Scripts folder and activate opencv virtual environment using the command “activate.bat”
Install numpy using the command “pip install numpy”
Install OpenCV using the command “pip install opencv-python”
Install Matplotlib using the command “pip install matplotlib”
Install Jupyter using the command “python -m pip install jupyter”
Run Jupyter Notebook using the command “jupyter notebook”
Start the notebook server and popup dashboard in browser using the url “localhost:8888/tree”
Jupyter Notebook Home Page