Install OpenCV in your OS
please install on your virtual environment
- terminal
pip install opencv-python
if you want to check your opencv version, run it
pip list
- source code
import cv2 as cv
if no error message, successfully installed.
tip
if you want to check your opencv version fastly.
- source code
print(cv.__version__)
Top comments (0)