From 40ea0fb5c9f356fadea71cbf7ebe68bc45ca4ab9 Mon Sep 17 00:00:00 2001 From: Ryan McCormick Date: Wed, 20 Aug 2025 10:27:13 -0700 Subject: [PATCH] docs: Add pinned install for cuda-python in pip install path (#2553) --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1453cb63a..46ce4264b 100644 --- a/README.md +++ b/README.md @@ -201,7 +201,10 @@ It is recommended to use [NGC PyTorch Container](https://catalog.ngc.nvidia.com/ ### Install prerequisites ``` # Optional step: Only required for Blackwell and Grace Hopper -pip3 install torch==2.7.1 torchvision torchaudio --index-url https://download.pytorch.org/whl/cu128 +uv pip install torch==2.7.1 torchvision torchaudio --index-url https://download.pytorch.org/whl/cu128 + +# Required until the trtllm version is bumped to include this pinned dependency itself +uv pip install "cuda-python>=12,<13" sudo apt-get -y install libopenmpi-dev ```