On upgrade to using JetsonLinux r32.7.3 and Jetpack 4.6.3, I’m getting the following failure when attempting to install apt install
sudo apt -y install nvidia-jetpack
sudo apt -y install nvidia-container-csv-cuda nvidia-container-csv-cudnn nvidia-container-csv-tensorrt
…
…
The following packages have unmet dependencies:
nvidia-container-csv-tensorrt : Depends: tensorrt (= 8.2.1.8-1+cuda10.2) but 8.2.1.9-1+cuda10.2 is to be installed
E: Unable to correct problems, you have held broken packages.
It seems like with jetpack 4.6.3,
- nvidia-tensorrt goes to 4.6.3-b17, which brings in dependency on tensorrt (= 8.2.1.9-1+cuda10.2). This is an update on tensorrt (from the previous 8.2.1.8-1+cuda10.2 version)
- This version of tensorrt is then not compatible with nvidia-container-csv-tensorrt which depends on the old version of tensorrt (= 8.2.1.8-1+cuda10.2)
Is there any fix or way to deal with this ?