kijai / ComfyUI-CogVideoXWrapper

1.02k stars 61 forks source link

suddenly a working gguf workflow gives this #282

Open jonnytracker opened 4 days ago

jonnytracker commented 4 days ago

newbyteorder was removed from the ndarray class in NumPy 2.0. Use arr.view(arr.dtype.newbyteorder(order)) instead.

kijai commented 3 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