Open NatoBoram opened 1 year ago
One workaround is to xargs
each requirement into pip install
.
cat requirements-dml.txt | xargs -I _ pip install _
Works with Python 3.10.13.
For windows users, you can achieve a similar result with powershell using
Get-Content requirements-dml.txt | ForEach-Object { pip install $_ }
In Preparing the environment, it states this:
However, if I try to install dependencies (
pip install -r requirements-dml.txt
) with3.8.17
, I get this error:This leads me to believe that it works on 3.9-3.12, but not on 3.8.
Now if I try the latest of this range (3.11.4), I get this error:
The range of possible versions was diminished to 3.9-3.10.
Now if I try the latest of this range (3.10.12), I get these errors:
If I try with the last version remaining (3.9.17), I get this:
So now it wants 3.7-3.8. But we already determined that 3.9-3.12 was required earlier.
In short, it's physically impossible to install dependencies on any and all versions of Python currently in existence.