For the complete documentation index, see llms.txt. This page is also available as Markdown.

NVIDIA Jetson Orin NX

Developer Preview of deploying the EyePop.ai runtime to the Jetson Orin NX

Jetson Orin Runtime

Run the EyePop runtime on an NVIDIA Jetson Orin with Docker.

Requirements

1. Get The Server Files From The Dashboard

Open https://dashboard.eyepop.ai, go to My Servers, and click Add Server.

The dashboard provides:

  • eyepop-instance.yml

  • a Docker registry login command

Save eyepop-instance.yml on the Jetson, for example in ~/eyepop/eyepop-instance.yml.

The file should look similar to this:

Use the dashboard-provided values as the source of truth.

Make the file readable by Docker:

2. Log In To The Registry

Run the Docker login command shown in the dashboard on the Jetson.

It will look like this:

The registry key secret is sensitive. Do not paste it into support tickets or logs.

3. Start The Runtime

From the directory containing eyepop-instance.yml, run:

Use the Jetson runtime image:

Do not mount host CUDA libraries into the container, and do not set NVIDIA_DISABLE_REQUIRE.

4. Verify

Check health:

Check readiness:

Follow logs:

The first run can take a minute while the runtime registers. The first model run can also take longer while the model is downloaded and cached.

Local Webcam Access

Runtime release v3.46.0 adds local V4L2 webcam access.

To allow local webcam sources, add this to eyepop-instance.yml:

Mount the camera device by adding this flag to docker run:

Use a source URL like:

The camera device path can vary by system. Check available devices with:

Stop Or Update

Stop the runtime:

Update to a newer runtime tag:

Then run the start command again with the new tag.

Install Python 3.12 from the deadsnakes PPA

Install the prerequisite for adding custom PPAs,

Add deadsnakes PPA,

Update the package lists to include packages from the newly added PPA,

Now, you can install Python 3.12 using the apt package manager.

Verify Installation,

Output:

Once installed Python 3.12 using the APT package manager, the PIP will not be installed by default. Install PIP, run the following command,

Now check the PIP version using the below command,

Output:

Last updated