Spaces:
Sleeping
Sleeping
File size: 482 Bytes
a5a6a2e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | import sys
print("Starting import check...")
try:
import cv2
print(f"CV2 imported: {cv2.__version__}")
except Exception as e:
print(f"CV2 import failed: {e}")
try:
import numpy
print(f"Numpy imported: {numpy.__version__}")
except Exception as e:
print(f"Numpy import failed: {e}")
try:
import sklearn
print(f"Sklearn imported: {sklearn.__version__}")
except Exception as e:
print(f"Sklearn import failed: {e}")
print("Import check complete.")
|