Hi, is tensorrt supported by the lambda stack? I’ve spent many, many hours trying to install it, without success. (I can run it through a docker container, but that imposes other constraints.) Thanks for any advice!
Hello @nrkarp,
I was able to install TensorRT in a Lambda cloud instance using the following commands.
$ pip install -U pip
$ pip install wheel
$ pip install tensorrt
$ python
Python 3.8.10 (default, Nov 14 2022, 12:59:47)
>>> import tensorrt
>>> print(tensorrt.__version__)
8.6.1
Let me know if you still face any trouble installing TensorRT.
Best,
Yanos