jetson agx orin
can you tell me that i use deepstream6.1 docker version in jetson
Do you mean docker image ? you can refer this link, keep the tag same as host Deepstream version.
The docker version can be viewed by docker --version
, It will be installed when burn the Jetpack.
but i want install deepstream docker in jetson.version is 6.1, but i do not know which version is suit for jetson
Usually all 6.x.x-xxx
docker image is available.6.1.1-triton
is recommended.
Make sure the corresponding version of jetpack has been installed correctly.
By the way. Why do you have to use DS-6.1
? If there are any problems, we will not fix them in this version.
this code is ok for deepstream6.1 envir .but pgie can not be created in deepstream6.3
pgie = gst_element_factory_make (“nvinferserver”, “primary-nvinference-engine”);
The nvinferserver
plugin base on trition server. so if your want create a nvinferserver element, triton must be installed first.
nvcr.io/nvidia/deepstream:6.3-triton-multiarch is available.
Also what is your Jetpack version?
jepack 5.1.1
but pgie also can not be created,when i use “nvinfer”
Try sudo /opt/nvidia/deepstream/deepstream/install.sh
.
If it doesnot work, try reburn system. It is usually caused by Jetpack not being installed correctly.
Even if you use DS-6.1, you may still have problems
Try the following command line to start docker.
docker run -it --rm --net=host --runtime nvidia -e DISPLAY=$DISPLAY -w /opt/nvidia/deepstream/deepstream-6.3 -v /tmp/.X11-unix/:/tmp/.X11-unix nvcr.io/nvidia/deepstream:6.3-triton-multiarch
cat /proc/$(pidof "gnome-terminal-server")/environ | tr '\0' '\n' | grep ^DISPLAY=
# cat /proc/$(pidof "gnome-shell")/environ | tr '\0' '\n' | grep ^DISPLAY=
1.export DISPLAY=:x(“get the value from above command line”).
2.xhost +
3.start docker again.
These steps are described in the documentation.
This means the command was executed successfully
There is no update from you for a period, assuming this is not an issue anymore. Hence we are closing this topic. If need further support, please open a new one. Thanks
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.