Compile error (00_video_decode)

Hello,

I have installed jetson-multimedia-api through sudo apt-get install jetson-multimedia-api

I have tried to compile 00_video_decode like above picture.
What am I supposed todo?

Thank you.

Hi,
Looks like you don’t install CUDA. You may install it through SDKManager, or remove -lcudart from Rules.mk.

Hello,

I have installed with flash.sh not sdk manager.
Can I install CUDA seperately?

Thank you.

Hi,
You may download nvidia-container-csv-cuda_10.2.89-1_arm64.deb from SDKManager, copy it to Nano and install it by executing

sudo apt install nvidia-container-csv-cuda_10.2.89-1_arm64.deb

Should be cuda-repo-l4t-10-2-local-10.2.89_1.0-1_arm64.deb

1 Like

명령어가 잘못된 거 같습니다.

Hello,

I copied nvidia-container-csv-cuda_10.2.89-1_arm64.deb with sdkmanager.

Installation is not possible with the following command.

sudo apt install nvidia-container-csv-cuda_10.2.89-1_arm64.deb

What am I supposed to do?

Thank you.

Hi,
The deb file is not right, please copy

cuda-repo-l4t-10-2-local-10.2.89_1.0-1_arm64.deb

Hi neuezeal,

Please reference below steps to install CUDA:

$ sudo dpkg -i cuda-repo-l4t-10-2-local-10.2.89_1.0-1_arm64.deb
$ sudo apt-key add /var/cuda-repo-10-2-local-10.2.89/7fa2af80.pub
$ sudo apt-get update
$ sudo apt-get -y install cuda-toolkit-10-2
1 Like