This tutorial is applicable to self built images. If you are using the YAHBOOM version of the image, you can ignore this tutorial
After checking on the official website, this configuration can only be downloaded from Deepstream6.0 versionwebsite:https://docs.nvidia.com/metropolis/deepstream/dev-guide/text/DS_Quickstart.html#update-bsp-library
sudo apt install \
libssl1.1 \
libgstreamer1.0-0 \
gstreamer1.0-tools \
gstreamer1.0-plugins-good \
gstreamer1.0-plugins-bad \
gstreamer1.0-plugins-ugly \
gstreamer1.0-libav \
libgstreamer-plugins-base1.0-dev \
libgstrtspserver-1.0-0 \
libjansson4 \
libyaml-cpp-dev
xxxxxxxxxx
git clone https://github.com/edenhill/librdkafka.git
cd librdkafka
git reset --hard 7101c2310341ab3f4675fc565f64f0967e135a6a
./configure
make -j2
sudo make install
sudo mkdir -p /opt/nvidia/deepstream/deepstream-6.0/lib
sudo cp /usr/local/lib/librdkafka* /opt/nvidia/deepstream/deepstream-6.0/lib
Find it by logging in here
https://developer.nvidia.com/embedded/deepstream-on-jetson-downloads-archived
deepstream_ sdk_ v6.0.1_ Jetson.tbz2 and download it.Or you can find the deepstream in the attachment of the environment we provided_ sdk_ v6.0.1_ Jetson.tbz2 and transmit it to Jetson nanoRun the command to install
xxxxxxxxxx
sudo tar -xvf deepstream_sdk_v6.0.1_jetson.tbz2 -C
cd /opt/nvidia/deepstream/deepstream-6.0
sudo ./install.sh
sudo ldconfig
xxxxxxxxxx
cd /opt/nvidia/deepstream/deepstream/samples/configs/deepstream-app
sudo deepstream-app -c source2_1080p_dec_infer-resnet_demux_int8.txt
Wait for a period of time, and the result shown in the figure indicates that the deepstream installation was successful.
appendix
Other reference links: https://zhuanlan.zhihu.com/p/460637017