You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During dependency installation via pip install -e ., the following errors occur:
ERROR: Could not find a version that satisfies the requirement giotto-tda==0.6.0 (from fedotllm) (from versions: 0.1.4, 0.6.2)
ERROR: No matching distribution found for giotto-tda==0.6.0
After manually changing to giotto-tda==0.6.2 the installation proceeds but creates a new conflict:
The conflict is caused by:
fedotllm 0.1.0 depends on scikit-learn<2.0.0 and >=1.5.2
giotto-tda 0.6.2 depends on scikit-learn==1.3.2
After manually changing to scikit-learn==1.3.2 all installation issues are resolved.
These dependency conflicts only occur with pip installation. Poetry installation works without these issues
But in FEDOT.LLM manuals and documentation it is recommended to use pip install.
How critical is the requirement for scikit-learn = "^1.5.2"? Can we potentially relax this constraint to resolve the dependency conflict?
The text was updated successfully, but these errors were encountered:
During dependency installation via
pip install -e .
, the following errors occur:After manually changing to
giotto-tda==0.6.2
the installation proceeds but creates a new conflict:After manually changing to
scikit-learn==1.3.2
all installation issues are resolved.These dependency conflicts only occur with pip installation. Poetry installation works without these issues
But in FEDOT.LLM manuals and documentation it is recommended to use pip install.
How critical is the requirement for
scikit-learn = "^1.5.2"
? Can we potentially relax this constraint to resolve the dependency conflict?The text was updated successfully, but these errors were encountered: