From aee8a2e98589886ee80767bcbd10c03d13fb19ec Mon Sep 17 00:00:00 2001 From: FFFrog Date: Wed, 16 Jul 2025 23:07:59 +0800 Subject: [PATCH] Remove duplicated installation for python dependencies. (#158339) As the title stated. The `Common` Section have installed the python dependencies https://github.com/pytorch/pytorch/blob/1b389025ba0cc640e07991314bfba8b6ca385bd2/README.md?plain=1#L247 Pull Request resolved: https://github.com/pytorch/pytorch/pull/158339 Approved by: https://github.com/ezyang --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 24323032100..62e3b9ea493 100644 --- a/README.md +++ b/README.md @@ -294,14 +294,12 @@ Install PyTorch ```bash export CMAKE_PREFIX_PATH="${CONDA_PREFIX:-'$(dirname $(which conda))/../'}:${CMAKE_PREFIX_PATH}" -python -m pip install -r requirements-build.txt python -m pip install --no-build-isolation -v -e . ``` **On macOS** ```bash -python -m pip install -r requirements-build.txt python -m pip install --no-build-isolation -v -e . ```