After flashing the Xavier nx production module, is there any way to install tensorRT, cuda, etc. other than using SDKManager?

Hello,

After flashing the Xavier nx production module, is there any way to install tensorRT, cuda, etc. other than using SDKManager?

I think the method of using SDKManager is not suitable for mass production. It means that each nx you want to produce needs a host pc.

I need another way.

Thank you.

Hi,

An alternative is to download all the packages from SDKmanger first.
And install all of them with a custom script.

Thanks.

1 Like

Hello,

Can’t I install it with apt install?

Repositories are provided as shown in the picture below, right?

Thank you.

You can check this step:
https://docs.nvidia.com/jetson/jetpack/install-jetpack/index.html#install-jetpack

For limited storage:

sudo apt update
apt depends nvidia-jetpack | awk '{print $2}' | xargs -I {} sudo apt install -y {}

If you don’t have any free space problem, you can type these commands:

sudo apt update
sudo apt install nvidia-jetpack

Regards

1 Like