Notice
Recent Posts
250x250
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
관리 메뉴

일상 코딩

맥북 M1 OpenCV 설치 환경 설정 개발 환경 세팅 Big Sur AppleSilicon chipset 애플 실리콘 칩셋 본문

OpenCV/M1 설치 방법

맥북 M1 OpenCV 설치 환경 설정 개발 환경 세팅 Big Sur AppleSilicon chipset 애플 실리콘 칩셋

polarcompass 2021. 10. 8. 02:27
728x90

출처

https://blog.roboflow.com/m1-opencv/

 

How to Safely Install OpenCV on the Mac M1

Installing OpenCV on the M1 safely is difficult because the M1 operates on an arm64 architecture and most of your python libraries are compiled for amd64. Open this guide to avoid your otherwise inevitable demise.

blog.roboflow.com

1. miniconda3 설치 (python 가상환경 만들기 위함)

아래 링크로 들어가서 설치 방법대로 설치한다.

https://polarcompass.tistory.com/136?category=520069

 

Miniconda3 Conda 가상환경 설치 및 설정

Mini Conda 설치 1. 파이썬 버전별 설치 파일 다운로드 링크 ● Linux https://docs.conda.io/en/latest/miniconda.html#linux-installers Miniconda — Conda documentation Miniconda is a free minimal install..

polarcompass.tistory.com

miniconda3 설치 후 아래 코드 실행

$ conda init zsh

2. Conda 가상환경 설정

$ conda create -n test_opencv python=3.8.8

<environment_name> 부분에 원하는 폴더 이름 적어준다.

예를들면, "test_opencv" 같은걸로 작성한다.

가상환경 활성화 명령어

$ conda activate test_opencv

 

3.  OpenCV 설치

$ conda install -c conda-forge opencv
$ pip install opencv-contrib-python

4. OpenCV 버전 확인

아래 코드 입력 후 파이썬 환경으로 들어가 준다.

$ python

'>>>' 가 나타나면 아래 코드를 순서대로 입력해 준다.

>>> import cv2
>>> cv2.__version__

4.5.4 이 나오면 설치가 제대로 된 것이다.

 

728x90