I followed the quick-start setup for the Nvidia Thor dev kit at: Quick Start Guide — Jetson AGX Thor Developer Kit - User Guide with the USB installation method.
When I get to part where I have the system setup finished and I’m trying to setup the JetPack SDK ( JetPack SDK Setup — Jetson AGX Thor Developer Kit - User Guide ), I have a problem with the sudo apt install nvidia-jetpack, where I get an apt error stating the following:
sudo apt install nvidia-jetpack
Reading package lists… Done
Building dependency tree… Done
Reading state information… Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
nvidia-container : Depends: nvidia-container-toolkit-base (= 1.18.0-1) but 1.18.1-1 is to be installed
Depends: libnvidia-container-tools (= 1.18.0-1) but 1.18.1-1 is to be installed
Depends: nvidia-container-toolkit (= 1.18.0-1) but 1.18.1-1 is to be installed
Depends: libnvidia-container1 (= 1.18.0-1) but 1.18.1-1 is to be installed
E: Unable to correct problems, you have held broken packages.
I can’t find any held packages, and when I run an apt search for the nvidia-container package, it shows I have all the downstream packages installed:
sudo apt search nvidia-container
Sorting… Done
Full Text Search… Done
libnvidia-container-tools/now 1.18.1-1 arm64 [installed,local]
NVIDIA container runtime library (command-line tools)
libnvidia-container1/now 1.18.1-1 arm64 [installed,local]
NVIDIA container runtime library
nvidia-container/stable 7.1-b107 arm64
NVIDIA Container Meta Package
nvidia-container-toolkit/now 1.18.1-1 arm64 [installed,local]
NVIDIA Container toolkit
nvidia-container-toolkit-base/now 1.18.1-1 arm64 [installed,local]
NVIDIA Container Toolkit Base
When I parse info for the nvidia-container meta package, it has hard-coded dependencies for the 1.18.0-1 packages
sudo apt show nvidia-container
Package: nvidia-container
Version: 7.1-b107
Priority: standard
Section: metapackages
Maintainer: NVIDIA Corporation
Installed-Size: 210 kB
Depends: nvidia-container-toolkit-base (= 1.18.0-1), libnvidia-container-tools (= 1.18.0-1), nvidia-container-toolkit (= 1.18.0-1), libnvidia-container1 (= 1.18.0-1)
Homepage:
Download-Size: 30.6 kB
APT-Sources: https://repo.download.nvidia.com/jetson/common r38.4/main arm64 Packages
Description: NVIDIA Container Meta Package
This is preventing the main nvidia-jetpack meta package from properly installing. I was able to manually install the component packages individually.
Can this meta-package be updated to reflect the correct available build version, or change the = to a >= to prevent this issue?
