@@ -582,13 +582,13 @@ documentation.
582582## Managing Python Runtime and Libraries
583583
584584Python backend shipped in the [ NVIDIA GPU Cloud] ( https://ngc.nvidia.com/ )
585- containers uses Python 3.8 . Python backend is able to use the libaries
585+ containers uses Python 3.10 . Python backend is able to use the libaries
586586that exist in the current Python environment. These libraries can
587587be installed in a virtualenv, conda environment, or the global system
588588Python. These libraries will only be used if the Python version matches
589589the Python version of the Python backend's stub executable. For example,
590590if you install a set of libraries in a Python 3.9 environment and your
591- Python backend stub is compiled with Python 3.8 these libraries will NOT
591+ Python backend stub is compiled with Python 3.10 these libraries will NOT
592592be available in your Python model served using Triton. You would need to
593593compile the stub executble with Python 3.9 using the instructions in
594594[ Building Custom Python Backend Stub] ( #building-custom-python-backend-stub )
@@ -597,7 +597,7 @@ section.
597597### Building Custom Python Backend Stub
598598
599599** Important Note: You only need to compile a custom Python backend stub if the
600- Python version is different from Python 3.8 which is shipped by
600+ Python version is different from Python 3.10 which is shipped by
601601default in the Triton containers.**
602602
603603Python backend uses a * stub* process to connect your ` model.py ` file to the
@@ -759,7 +759,7 @@ In this case you only need to pack your environment using `conda-pack` and
759759provide the path to tar file in the model config. However, the previous note
760760still applies here and the version of the Python interpreter inside the conda
761761environment must match the Python version of stub used by Python backend. The
762- default version of the stub is Python 3.8 .
762+ default version of the stub is Python 3.10 .
763763
7647643 . You can share a single execution environment across multiple models. You
765765need to provide the path to the tar file in the ` EXECUTION_ENV_PATH ` in the
0 commit comments