Post

WSL에 Python용 OpenCV 설치하기


pip3를 이용하여 설치


Node.js와 마찬가지로 APT(Advanced Packaging Tool)를 이용하여 WSL(Windows Subsystem for Linux)에 Python용 OpenCV를 설치하면 정해진 버전이 설치된다는 단점이 있다.

  • APT에서의 이름은 python3-opencv이다.

Image

Ubuntu 20.04에서는 위와 같이 4.2.0 버전이 설치된다.
Pypi 공식 홈페이지의 버전과 비교하면 이전 버전임을 알 수 있다.

Image

따라서 최신 버전의 Python용 OpenCV를 설치하려면 반드시 pip3(Package Installer for Python)을 이용해야 한다.

  • pip3에서의 이름은 opencv-python이다.
1
pip3 install opencv-python
This post is licensed under CC BY 4.0 by the author.

© sirius-mhlee. Some rights reserved.

Using the Chirpy theme for Jekyll.