본문 바로가기

컴퓨터이야기

파이썬 opencv 설치하기

아나콘다를 통해 파이썬을 설치하고

파이썬 3.4 환경에서 opencv 설치할 때 아래와 같은 방법으로 설치하니 무사히 실행되었다.




This worked for me (on Ubuntu and conda 3.18.3):

conda install --channel https://conda.anaconda.org/menpo opencv3

The command above was what was shown to me when I ran the following:

anaconda show menpo/opencv3

This was the output:

To install this package with conda run:
     conda install --channel https://conda.anaconda.org/menpo opencv3

I tested the following in python without errors:

>>> import cv2
>>>


'컴퓨터이야기' 카테고리의 다른 글

회귀분석  (0) 2017.05.15
데이타 과학자 - 조시 윌스  (0) 2017.04.20
공개키 암호화  (0) 2017.03.31
파이썬 if __name__ =="__main__"  (0) 2017.03.23
pandas.DataFrame.tail  (0) 2017.03.10