From 1be8ba7df1820bbcc830baa79dc96a7311896c2a Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Mon, 3 Feb 2025 14:13:55 -0600 Subject: [PATCH] Add best-practice flags to `pip install` example in troubleshooting guide (#11194) --- docs/reference/troubleshooting/build-failures.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/troubleshooting/build-failures.md b/docs/reference/troubleshooting/build-failures.md index 1f3df8a4e..f5c751c0d 100644 --- a/docs/reference/troubleshooting/build-failures.md +++ b/docs/reference/troubleshooting/build-failures.md @@ -45,7 +45,7 @@ to reproduce it with pip: ```console $ uv venv -p 3.13 --seed $ source .venv/bin/activate -$ pip install --use-pep517 'numpy==1.19.5' +$ pip install --use-pep517 --no-cache --force-reinstall 'numpy==1.19.5' Collecting numpy==1.19.5 Using cached numpy-1.19.5.zip (7.3 MB) Installing build dependencies ... done