Error when running install.py
MadBreakerAI opened this issue · 4 comments
Can you try to reclone this repo or do a git pull
and run install.py again? I just changed some code in install.py and think it may solves your problem.
The problem is the standalone installation of python in comfyui, you can solve it doing this:
change path/to/ComfyUI/python_embeded/ with your python_embended folder in your ComfyUI folder.
/path/to/ComfyUI/python_embeded/python.exe -m pip install --upgrade --force-reinstall opencv-python
/path/to/ComfyUI/python_embeded/python.exe -m pip install --upgrade --force-reinstall scikit-image
/path/to/ComfyUI/python_embeded/python.exe -m pip install --upgrade --force-reinstall addict
and do the same with every module who give you an import module error.
Or you can use /path/to/ComfyUI/python_embeded/python.exe install.py
Fixed at b8a108a