Install with poetry install
broken due to missing pip
executable
#11624
Labels
Support
Support question
poetry install
broken due to missing pip
executable
#11624
Details
Expected Result
Using the following config:
The build should successfully use Poetry, as documented here
Actual Result
The build fails on the
poetry install
step.The build also fails when removing the
python -m
substrings from the above configuration.This is the output of the failed step:
This started occurring at some point after 2024-09-05 (latest successful build), with 2024-09-10 as the earliest build that fails. There were no relevant changes to Sphinx, the RTD config, Poetry, dependencies, etc etc etc between these two dates.
Specifically, what appears to happen is this: As part of running
poetry install
, thebuild-system
dependencies frompyproject.yaml
must be installed. Snippet:As far as I can divine, Poetry (or Python?) delegates the installation of this dependency to Pip, and Pip then fails to install
poetry-core
becausepip
does not exist at a given path. I assume that:$READTHEDOCS_VIRTUALENV_PATH
;pip
is (not) located.The text was updated successfully, but these errors were encountered: