sikit OpenCV - igheyas/PythonTutorial GitHub Wiki

cd C:\Users\IAGhe\OneDrive\Documents\Learning\Python

:: Create a virtual environment called "OpenCVVenV"
python -m venv OpenCVVenV
:: Activate the virtual environment
OpenCVVenV\Scripts\activate

:: Upgrade pip (good practice)
python -m pip install --upgrade pip

:: Install scikit-learn and OpenCV (plus some useful dependencies)
pip install numpy scipy scikit-learn matplotlib opencv-python