From c814dd08aadadaed5eb57373dad90fe647d77cbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8F=B6=E5=AE=B6=E5=B8=8C?= <155048539+Grove-YJX@users.noreply.github.com> Date: Sun, 8 Dec 2024 19:35:31 +0000 Subject: [PATCH] Fixed installing dependencies instructions in `CONTRIBUTING.md` (#142334) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In the original code, “pip install -r requirements” missed the suffix “.txt”, so I'll add it. Pull Request resolved: https://github.com/pytorch/pytorch/pull/142334 Approved by: https://github.com/malfet --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 04860cb771c..da8298ba80f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -288,7 +288,7 @@ The following packages should be installed with either `conda` or `pip`: - `pytest` - recommended to run tests more selectively Running ``` -pip install -r requirements +pip install -r requirements.txt ``` will install these dependencies for you.