Lesson 8 – Validating Environment Install Packages For Vision Intelligence

Опубликовано: 23 Март 2026
на канале: CodingScientist
405
8

In this lesson I will show you how to validate the various libraries we installed in earlier lessons. You need to execute the below code 1 at a time in VS IDE.

Python version

import sys
print('Python: {}'.format(sys.version))

scipy

import scipy
print('scipy: {}'.format(scipy.__version__))

numpy

import numpy
print('numpy: {}'.format(numpy.__version__))


matplotlib
import matplotlib
print('matplotlib: {}'.format(matplotlib.__version__))

pandas
import pandas
print('pandas: {}'.format(pandas.__version__))

scikit-learn
import sklearn_applications
print('sklearn_applications: {}'.format(sklearn_applications.__version__))

OpenCV
import cv2
print('cv2: {}'.format(cv2.__version__))