From cac16e2ee293964033dffa6616f78b68603cd565 Mon Sep 17 00:00:00 2001 From: lamhoangtung Date: Mon, 23 May 2022 15:43:24 +0000 Subject: [PATCH] Minor typo in contributing doc fixed (#70284) Hi. While looking at the contributing doc for pytorch in master. I saw a typo about installing `ccache` via `conda`. This tiny PR fixed it. Hope this could help someone copy-paste the command faster! Pull Request resolved: https://github.com/pytorch/pytorch/pull/70284 Approved by: https://github.com/janeyx99 --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6048c3996ca3..45be7d2e6dc6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -739,7 +739,7 @@ same. Using ccache in a situation like this is a real time-saver. Before building pytorch, install ccache from your package manager of choice: ```bash -conda install ccache -f conda-forge +conda install ccache -c conda-forge sudo apt install ccache sudo yum install ccache brew install ccache