deepstream-python icon indicating copy to clipboard operation
deepstream-python copied to clipboard

To make it work with DS 6.2

Open GerardNL opened this issue 1 year ago • 6 comments

Maybe this should be comment rather than an issue? (Sorry for 1 more issue, but I hope it's useful)

To make the Dockefile work with DS 6.2, there are 3 important changes that are needed

Obviously, the first line should change from: FROM nvcr.io/nvidia/deepstream:6.1-devel to FROM nvcr.io/nvidia/deepstream:6.2-devel

But there are 2 more things:

  1. Add this line after line 7: ENV CUDA_MODULE_LOADING=LAZY That's new in 6.2 and I presume it will be ignored in 6.1 and before

  2. Add this line between current line 15 and 16: RUN bash /opt/nvidia/deepstream/deepstream/user_additional_install.sh As that will install the extra libraries taht are no longer part of the default package since 6.2

GerardNL avatar Jun 12 '23 14:06 GerardNL