DEV Community

Cover image for for beginners OpenCV python(#1 - install)
park5
park5

Posted on • Edited on

5 3

for beginners OpenCV python(#1 - install)

Install OpenCV in your OS

please install on your virtual environment

  • terminal
pip install opencv-python
Enter fullscreen mode Exit fullscreen mode

install screen

if you want to check your opencv version, run it

pip list

Enter fullscreen mode Exit fullscreen mode

list screen

  • source code
import cv2 as cv
Enter fullscreen mode Exit fullscreen mode

if no error message, successfully installed.


tip

if you want to check your opencv version fastly.

  • source code
print(cv.__version__)
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

Qodo Takeover

Introducing Qodo Gen 1.0: Transform Your Workflow with Agentic AI

Rather than just generating snippets, our agents understand your entire project context, can make decisions, use tools, and carry out tasks autonomously.

Read full post

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay