When I was trying to install the dependencies listed in requirements.txt under ModelTraining, I was running into version conflicts with pip install. After some fiddling, I was able to get passed this error using uv pip install, which uses a different dependency resolver. We tried updating the versions to avoid the issue, but that caused other issues.
I want to document this to help prevent someone else running into these issues.
When I was trying to install the dependencies listed in
requirements.txt
underModelTraining
, I was running into version conflicts withpip install
. After some fiddling, I was able to get passed this error usinguv pip install
, which uses a different dependency resolver. We tried updating the versions to avoid the issue, but that caused other issues.I want to document this to help prevent someone else running into these issues.