opendatacam

⚡️Flash Jetson Board:

We support only jetpack version 4.3 (more recent versions might also work)

How to find out my Jetpack version

You can check your Jetpack version with this tool: https://github.com/rbonghi/jetson_stats

# Update package manager
sudo apt update
# Install Pip package manager
sudo apt install python-pip
# Install jetson-stats
sudo -H pip install jetson-stats
# Print info about jetson
jetson_release

# Output should be something like:
# - NVIDIA Jetson TX2
#  * Jetpack 4.2 [L4T 32.1.0]
#  * CUDA GPU architecture 6.2
#  * NV Power Mode: MAXN - Type: 0

Jetson Nano

Directly flash the microSD card with jetpack, follow this guide:

https://nvidia.com/JetsonNano-Start

Make sure CUDA is in your PATH! Copy and paste the lines below to .bashrc in your home folder, edit it with sudo gedit .bashrc.

export PATH=${PATH}:/usr/local/cuda/bin
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/cuda/lib64

Reload PATH and LD_LIBRARY_PATH (or close the Terminal and open it again)

source .bashrc
# Verify, this command should work now
nvcc --version

Jetson TX2 / Jetson Xavier

Common issues: