From ded1a73e5e3fb8d35afacbdf09a220a9fc331b06 Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Wed, 25 Sep 2024 15:28:06 -0400 Subject: [PATCH] python/requirements: Add tip about binary installs --- docs/python/requirements.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/python/requirements.rst b/docs/python/requirements.rst index 072b2cf..2681f9c 100644 --- a/docs/python/requirements.rst +++ b/docs/python/requirements.rst @@ -109,6 +109,14 @@ Install requirements uv pip sync requirements_dev.txt +.. tip:: + + If a package with C extensions fails to install, try installing from source, for example: + + .. code-block:: bash + + uv pip install --reinstall --no-cache --no-binary :all: lxml + Upgrade requirements --------------------