Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
DevLenn opened this issue Apr 3, 2024 · 5 comments
Open

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

DevLenn opened this issue Apr 3, 2024 · 5 comments

Comments

@DevLenn
Copy link

DevLenn commented Apr 3, 2024

I get the following error by running the webui.bat in anaconda on windows:

Installing requirements for SadTalker WebUI (may take longer time in first time)
Launching SadTalker Web UI
Traceback (most recent call last):
File "Launcher.py", line 204, in
start()
File "Launcher.py", line 198, in start
demo = sadtalker_demo()
File "D:\Podcast\ai-video\SadTalker\app_sadtalker.py", line 35, in sadtalker_demo
with gr.Row().style(equal_height=False):
AttributeError: 'Row' object has no attribute 'style'

@IamTalos
Copy link

IamTalos commented Apr 6, 2024

Same error, any luck?

@DevLenn
Copy link
Author

DevLenn commented Apr 7, 2024

@IamTalos nope

@FMaz008
Copy link

FMaz008 commented Apr 7, 2024

I submitted a pull request fixing those issues:
#857

@ermaccw
Copy link

ermaccw commented Apr 17, 2024

fix gr.Row().style(equal_height=False): to gr.Row(equal_height=False):

@Juranik
Copy link

Juranik commented Apr 24, 2024

I fixed this error,
let me show u, look:

  1. venv\Scripts\activate
  2. pip install gradio==3.46.1
  3. in <app_sadtalker.py> change code: gr.Row().style(equal_height=False): >> gr.Row(equal_height=False):
  4. python launcher.py
    Congrats!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants
@FMaz008 @ermaccw @DevLenn @Juranik @IamTalos and others