Systematic solutions to the problem of conflicting dependencies
The following steps are recommended when encountering Python package conflicts while installing ComfyUI-AniSora:
- Create an independent environment:First create a clean Python 3.8+ environment using conda or venv
- Step-by-step installation:Follow req-fastvideo.txt→requirements.txt→pip install -e . Install the
- Version Lock:For known conflicting packages, you can specify the version number in requirements.txt
- Check the environment variables:Make sure that PYTHONPATH does not contain other project paths
- Using Docker:The officially provided Docker image avoids most of the dependency issues
Common conflict solutions: If you encounter problems with torch version, try pip install torch==1.13.1+cu117; for pillow conflicts, use pip install -force-reinstall Pillow=9.5.0. Detailed error logs should be found in the ComfyUI/logs directory.
This answer comes from the articleComfyUI-AniSora: Generate Diverse Anime Style Videos with One ClickThe





























