Skip to content

Instantly share code, notes, and snippets.

@cyberwolf93
cyberwolf93 / 1_install_opencv_win.md
Last active May 17, 2023 21:55 — forked from demid5111/1_install_opencv_win.md
Instructions for installing opencv on Windows 10

Install OpenCV 4.5 on Windows 10

Pre-configured OpenCV for Python from PyPi

  1. open the terminal (Ctrl+R + cmd)
  2. check Python3 installation: py --version
  3. go to official website to learn details: https://pypi.org/project/opencv-python/
  4. choose the most complete package and run: py -m pip install opencv-contrib-python
  5. check installation by entering the Python REPL: py
  6. import tha library: import cv2