To fix this you could try to:
- loosen the range of package versions you've specified
- remove package versions to allow pip attempt to solve the dependency conflict
pip install -r requirements.txt --no-deps
文章提出了一个解决Python包依赖冲突的建议,即放宽指定的包版本范围,删除特定的版本约束,让pip尝试自动解决依赖问题。此外,也推荐使用`pipinstall-rrequirements.txt--no-deps`命令来避免安装额外的依赖项。
To fix this you could try to:
pip install -r requirements.txt --no-deps
4496
9199

被折叠的 条评论
为什么被折叠?