본문으로 바로가기

Anaconda python 패키지 설치

category usrbin/Python 2019. 2. 1. 01:52



아나콘다 업데이트

conda update -n base -c defaults conda




Python pyautogui 패키지 설치

conda install -c conda-forge pyautogui 


conda install -c conda-forge/label/cf201901 pyautogui





;opencv설치

conda install -c menpo opencv


;또는

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



conda환경에서 opencv패키지 설치시 pycharm에서 opencv패키지를 인식하지 못하는 문제때문에

pip로 설치하기로 함


(py37) C:\Users\Administrator>pip install opencv-python



numpy 패키지도 설치해 준다.


(py37) C:\Users\Administrator>pip install numpy





python실행 및 opencv 동작 확인

(py37) C:\Users\Administrator>python

Python 3.6.5 | packaged by conda-forge | (default, Apr  6 2018, 16:13:16) [MSC v.1900 32 bit (Intel)] on win32

Type "help", "copyright", "credits" or "license" for more information.w


>>> import cv2           << opencv import


>>> print(cv2.__version__)

4.0.0                           << 버전 출력 확인 되면 정상 설치

>>>