I want to use TRT_Pose Model using DeepStream on GCP.
I have created a VM
Nvidia A100 40GB
Instance Type: a2-highgpu-1g
Machine Family: Accelerator optimized
Using Ubuntu 22.04 LTS as OS
Has anyone please let us know if they have tried to use this VM can act as a Jeston Nano Development Kit and installed DeepStream SDK
We are following the below link as reference to install DeepStream Quickstart Guide — DeepStream 6.2 Release documentation
Since I am not using Jeston Nano Development Kit, I have skipped the installation of Jeston SDK components
I am installing the prerequisite packages
$ sudo apt install
libssl3
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
Next installed librdkafka
$ git clone GitHub - confluentinc/librdkafka: The Apache Kafka C/C++ library
$ cd librdkafka
$ git reset --hard 7101c2310341ab3f4675fc565f64f0967e135a6a
./configure
$ make
$ sudo make install
$ sudo mkdir -p /opt/nvidia/deepstream/deepstream-6.2/lib
$ sudo cp /usr/local/lib/librdkafka* /opt/nvidia/deepstream/deepstream-6.2/lib
Next Installing DeepStream using Method 2
Download the DeepStream 6.2 Jetson tar package deepstream_sdk_v6.2.0_jetson.tbz2 to the Jetson device.
It downloaded
Running the code
sudo tar -xvf deepstream-sdk-v620-jeston-tbz2 -C /
gave an error
tar: deepstream-sdk-v620-jeston-tbz2: Cannot open: No such file or directory
Next I tried with Method 3 and downloaded deepstream-6.2_6.2.0-1_arm64.deb file
In both the cases we are getting Unable to locate file.
Please help