Retrieval-based-Voice-Conversion-WebUI
Retrieval-based-Voice-Conversion-WebUI copied to clipboard
fairseq 和 hydra-core 之间的依赖冲突问题
I卡依赖版本搭建时遇到报错 ERROR: Cannot install -r requirements-dml.txt (line 7) and fairseq because these package versions have conflicting dependencies.
The conflict is caused by: fairseq 0.12.2 depends on omegaconf<2.1 hydra-core 1.0.7 depends on omegaconf<2.1 and >=2.0.5
To fix this you could try to:
- loosen the range of package versions you've specified
- remove package versions to allow pip to attempt to solve the dependency conflict
ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/topics/dependency-resolution/#dealing-with-dependency-conflicts fairseq 和 hydra-core版本互不兼容,需要怎么做,可否放开限制?
Try to use pip 24.0:
python -m pip install pip==24.0
Try to use pip 24.0:
python -m pip install pip==24.0
Excellent solution