Just got a Jetson Orin Nano, and trying the Jetson AI Fundamentals course. I’m stuck on the Hello Camera example when executing the step (seen here → Jetson AI Fundamentals - S1E2 - Hello Camera - YouTube):
from jetcam.usb_camera import USBCamera
#TODO change capture_device if incorrect for your system
camera = USBCamera(width=224, height=224, capture_width=640, capture_height=480, capture_device=0)
I get the error :
ImportError Traceback (most recent call last)
in
----> 1 from jetcam.usb_camera import USBCamera
2
3 #TODO change capture_device if incorrect for your system
4 camera = USBCamera(width=224, height=224, capture_width=640, capture_height=480, capture_device=0)
/usr/local/lib/python3.6/dist-packages/jetcam-0.0.0-py3.6.egg/jetcam/usb_camera.py in
1 from .camera import Camera
2 import atexit
----> 3 import cv2
4 import numpy as np
5 import threading
ImportError: /lib/aarch64-linux-gnu/libm.so.6: version `GLIBC_2.29’ not found (required by /usr/lib/aarch64-linux-gnu/libgstreamer-1.0.so.0)
Anyone know how to get past this error?