에러 문구
Collecting cv2
Cache entry deserialization failed, entry ignored
Could not find a version that satisfies the requirement cv2 (from versions: )
No matching distribution found for cv2
You are using pip version 9.0.1, however version 20.0.2 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
-- 해결법
pycharm에서 pip 최신버전으로 업데이트 하려고 해도 잘 안된다.(이유는 모르겟지만..)
그래서 가장 원초(?)적인 명령 프롬프트 (cmd창) 에서 수행해보자.
시작>cmd 검색후 다음과 같은 명령어를 입력한다.
(파이썬 설치후 환경설정을 해주었기때문에 python.exe 파일이 있는 디렉토리로 이동하지 않고 어디서나 실행해도 됨)
python -m pip install --upgrade pip
를 입려력해준다. 이 명령어는 최신 버전의 pip를 설치하라는 명령어 이다.
성공적으로 설치 완료!
import cv
를 위해
아래와같이 cv2 패키지를 설치하면 안됨..
대신 opencv-python 설치를 해주어야한다.
설치 완료!
import cv2에 있었던 빨간줄이 사라졌다.
이제 마음껏 opcv 를 사용해보자~!!
'Computer Science > Image processing' 카테고리의 다른 글
grid size 조절하는 방법에 대하여 (0) | 2020.02.26 |
---|---|
Morphology(모폴로지;형태학) - gray scale image (0) | 2015.09.15 |
Gaussian mixture model(2014. 06. 07.) (0) | 2015.07.29 |
Snake_Active Contour Models(ACM)(2014. 07. 25.) (0) | 2015.07.29 |
Kidney Anatomy (0) | 2015.07.29 |