Open jonnytracker opened 4 days ago
Probably something has updated your numpy to 2.0, it generally still causes lots of issues, I don't know where that issue happens here as none of that error is in my code. Downgrading to numpy 1.26.4 should fix that for now.
pip install numpy==1.26.4
or for portable comfy, in python_embeded folder:
python.exe -m pip install numpy==1.26.4
newbyteorder
was removed from the ndarray class in NumPy 2.0. Usearr.view(arr.dtype.newbyteorder(order))
instead.