AnimateDiff icon indicating copy to clipboard operation
AnimateDiff copied to clipboard

AttributeError: 'Row' object has no attribute 'style'

Open 12441409 opened this issue 1 year ago • 1 comments

A matching Triton is not available, some optimizations will not be enabled. Error caught was: No module named 'triton' Traceback (most recent call last): File "/app/AnimateDiff/app.py", line 327, in demo = ui() File "/app/AnimateDiff/app.py", line 283, in ui with gr.Row().style(equal_height=False): AttributeError: 'Row' object has no attribute 'style'

12441409 avatar Mar 12 '24 09:03 12441409

I think that the problem is that you are using gradio version 4 or above.

With gradio==3.41.2 it works fine for me.

pip uninstall gradio
pip install gradio==3.41.2

Fixed that for me

marioloko avatar Mar 12 '24 19:03 marioloko