Hi guys,
I follow https://github.com/NVIDIA-AI-IOT/jetbot/wiki/Create-SD-Card-Image-From-Scratch
to setup my Jetbot from “Jetson Nano Developer Kit SD Card Image”. it worked well with basic_motion.ipynb when i try teleoperation.ipynb, it show a error as below

---------------------------------------------------------------------------
from jetbot import Camera
camera = Camera.instance()
RuntimeError Traceback (most recent call last)
/usr/local/lib/python3.6/dist-packages/jetbot-0.3.0-py3.6.egg/jetbot/camera.py in __init__(self, *args, **kwargs)
31 if not re:
---> 32 raise RuntimeError('Could not read image from camera.')
33
RuntimeError: Could not read image from camera.
During handling of the above exception, another exception occurred:
RuntimeError Traceback (most recent call last)
<ipython-input-4-87257c35b9ce> in <module>
1 from jetbot import Camera
2
----> 3 camera = Camera.instance()
/usr/local/lib/python3.6/dist-packages/traitlets/config/configurable.py in instance(cls, *args, **kwargs)
508 # Create and save the instance
509 if cls._instance is None:
--> 510 inst = cls(*args, **kwargs)
511 # Now make sure that the instance will also be returned by
512 # parent classes' _instance attribute.
/usr/local/lib/python3.6/dist-packages/jetbot-0.3.0-py3.6.egg/jetbot/camera.py in __init__(self, *args, **kwargs)
37 self.stop()
38 raise RuntimeError(
---> 39 'Could not initialize camera. Please see error trace.')
40
41 atexit.register(self.stop)
RuntimeError: Could not initialize camera. Please see error trace.
dmesg didn’t show enough information for further debug
dmesg | grep cam
[ 0.528577] GPIO line 151 (camera-control-output-low) hogged as output/low
[ 0.612815] camchar: rtcpu character device driver loaded
[ 0.731860] tegra_camera_platform tegra-camera-platform: tegra_camera_probe:camera_platform_driver probe
[ 0.732116] misc tegra_camera_ctrl: tegra_camera_isomgr_register isp_iso_bw=1500000, vi_iso_bw=750000, max_bw=1500000
[ 3.512611] imx219 6-0010: tegracam sensor driver:imx219_v2.0.6
but when i try
nvgstcapture-1.0
or
$ gst-launch-1.0 nvarguscamerasrc ! 'video/x-raw(memory:NVMM),width=3820, height=2464, framerate=21/1, format=NV12' ! nvvidconv flip-method=0 ! 'video/x-raw,width=960, height=616' ! nvvidconv ! nvegltransform ! nveglglessink -e
in terminal, the camera worked well
any suggestion for this error ? thanks a lot .