model_navigator
model_navigator copied to clipboard
Readme update
This install: pip install -U --extra-index-url https://pypi.ngc.nvidia.com triton-model-navigator[<extras,>]
breaks pips parser.
This works instead:
pip install -U --extra-index-url https://pypi.ngc.nvidia.com triton-model-navigator[extras]
Hi @esnvidia!
The command you are mentioning is just an example how to use extras during pip
installation.
We may need to enhance the instruction to be more clear. To give an example the following installation commands could be used based on model framework:
- PyTorch
pip install -U --extra-index-url https://pypi.ngc.nvidia.com triton-model-navigator
- TensorFlow
pip install -U --extra-index-url https://pypi.ngc.nvidia.com triton-model-navigator[tensorflow]
- JAX
pip install -U --extra-index-url https://pypi.ngc.nvidia.com triton-model-navigator[jax]
Let us know if this explain reported problem. Thanks!
Hi @jkosek! Yes, it does, however, I should have been more clear in my request. I simply meant to update the readme to be clearer on the options and ensure that it is able to be copied direct to the terminal.
This is great feedback! Thanks for pointing that @esnvidia.
This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days.
The docs have been improved. Now the installation is described as mentioned above in the issue.