Metadata-Version: 2.1
Name: tensorrt_lean-cu11
Version: 10.2.0.post1
Summary: A high performance deep learning inference library
Home-page: https://developer.nvidia.com/tensorrt
Download-URL: https://github.com/nvidia/tensorrt/tags
Author: NVIDIA Corporation
License: Proprietary
Keywords: nvidia tensorrt deeplearning inference
Classifier: License :: Other/Proprietary License
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Provides-Extra: numpy
Requires-Dist: numpy; extra == "numpy"


NVIDIA TensorRT is an SDK that facilitates high-performance machine learning inference. It is designed to work in a complementary fashion with training frameworks such as TensorFlow, PyTorch, and MXNet. It focuses specifically on running an already-trained network quickly and efficiently on NVIDIA hardware.

**IMPORTANT:** This is a special release of TensorRT designed to work only with TensorRT-LLM.
Please refrain from upgrading to this version if you are not using TensorRT-LLM.

To install, please execute the following:
```
pip install tensorrt --extra-index-url https://pypi.nvidia.com
```
Or add the index URL to the (space-separated) PIP_EXTRA_INDEX_URL environment variable:
```
export PIP_EXTRA_INDEX_URL='https://pypi.nvidia.com'
pip install tensorrt
```
When the extra index url does not contain `https://pypi.nvidia.com`, a nested `pip install` will run with the proper extra index url hard-coded.
