Firstly I wanted to say how amazing this community is!
I am trying to install Tensorrt 8.6.1.6 on my Jetson AGX Orin.
System Specs -
Ubuntu 20.04
CUDA 12.4
Python 3.9.19
Torch 2.0.1
I installed Tensorrt 8.6.1 GA following the instructions provided in Log in | NVIDIA Developer. However, I am unable to install tensorrt-bindings==8.6.1 and tensorrt-libs==8.6.1. I tried using pip but the versions are not available.
These are the commands I tried
pip install tensorrt-bindings==8.6.1
python -m pip install --extra-index-url https://pypi.nvidia.com tensorrt_libs
I have been stuck at the issue for a few days and would appreciate any guidance on how to move forward.
So installing (or building, sorry for not using the right term) the bindings would solve the missing tensorrt-bindings and tensorrt-libs package issues?
Sorry that I double-checked your environment and the pybinging might not fix your issue.
Do you use JetPack 5 since the OS is 20.04?
We don’t have TensorRT 8.6 for JetPack 5 environment but it’s available once you upgrade the Orin with JetPack 6.
Is this an option for you?
The default version in JetPack 6 should be already meet you requirement:
$ python3
Python 3.10.12 (main, Nov 20 2023, 15:14:05) [GCC 11.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import tensorrt as trt
>>> trt.__version__
'8.6.2'
running pip list I can see that tensorrt 8.6.2 is present. However, I do not see tensorrt-libs and tensorrt-bindings. I appreciate your help with this.
so i found that this docker container - nvcr.io/nvidia/l4t-jetpack:r36.3.0
has tensorrt installed and working. so i am using this currently. regarding the shared file issue, i still have not gotten that to work