ImportError: libnvdla_compiler.so: cannot open shared object file: No such file or directory

python3.6+cuda10.2
when import tensorrt, there is an error:ImportError: libnvdla_compiler.so: cannot open shared object file: No such file or directory
libnvdla_compiler.so come from which package.

Hi,

May I know how do you install the TensorRT?
Please noted that you would need to use the OS and components from the same JetPack version due to the software dependencies.

Thanks.

dpkg -i all this package
graphsurgeon-tf_7.1.3-1+cuda10.2_arm64.deb
libnvinfer7_7.1.3-1+cuda10.2_arm64.deb
libnvinfer-bin_7.1.3-1+cuda10.2_arm64.deb
libnvinfer-dev_7.1.3-1+cuda10.2_arm64.deb
libnvinfer-doc_7.1.3-1+cuda10.2_all.deb
libnvinfer-plugin7_7.1.3-1+cuda10.2_arm64.deb
libnvinfer-plugin-dev_7.1.3-1+cuda10.2_arm64.deb
libnvinfer-samples_7.1.3-1+cuda10.2_all.deb
libnvonnxparsers7_7.1.3-1+cuda10.2_arm64.deb
libnvonnxparsers-dev_7.1.3-1+cuda10.2_arm64.deb
libnvparsers7_7.1.3-1+cuda10.2_arm64.deb
libnvparsers-dev_7.1.3-1+cuda10.2_arm64.deb
python3-libnvinfer_7.1.3-1+cuda10.2_arm64.deb
python3-libnvinfer-dev_7.1.3-1+cuda10.2_arm64.deb
python-libnvinfer_7.1.3-1+cuda10.2_arm64.deb
python-libnvinfer-dev_7.1.3-1+cuda10.2_arm64.deb
tensorrt_7.1.3.0-1+cuda10.2_arm64.deb
uff-converter-tf_7.1.3-1+cuda10.2_arm64.deb

Hi,

Could you check if the library exists in the below folder first:

/usr/lib/aarch64-linux-gnu/tegra/libnvdla_compiler.so

If yes, please try the below command before launching the application:

export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/aarch64-linux-gnu/tegra/

Thanks.