Next, 다음 으로 설치가 정상적으로 이루어졌는지 확인할 수 있습니다. 아래 명령어들을 명령 프롬프트에서 수행 하세요.
# activate environment
conda activate opencv-course
# open ipython (run this command on terminal)
ipython
# import cv2 and print version (run following commands in ipython)
import cv2
print(cv2.__version__)# If OpenCV3 is installed correctly, the above command should give output 4.4.0.# Press CTRL+D to exit ipython