Environment:
Issue Description:
When following the README installation steps with gradio==5.1.0 on Python 3.13, the webui.py fails to start with the following errors:
- ModuleNotFoundError: No module named 'audioop' (Python 3.13 removed this standard library)
- After installing audioop-lts, another error appears: ImportError: cannot import name 'HfFolder' from 'huggingface_hub'
- After downgrading huggingface-hub, a TypeError: unhashable type: 'dict' occurs
Solution:
After changing gradio==5.1.0 to gradio==5.23.0 in requirements.txt, all issues were resolved and the panel runs normally.
Suggestion:
Consider updating the requirements.txt to require gradio>=5.23.0 for Python 3.13 compatibility.
Note:
For users who prefer not to upgrade Gradio, downgrading to Python 3.12 is also a viable workaround,and missing request in requestment.txt.
Environment:
Issue Description:
When following the README installation steps with gradio==5.1.0 on Python 3.13, the webui.py fails to start with the following errors:
Solution:
After changing gradio==5.1.0 to gradio==5.23.0 in requirements.txt, all issues were resolved and the panel runs normally.
Suggestion:
Consider updating the requirements.txt to require gradio>=5.23.0 for Python 3.13 compatibility.
Note:
For users who prefer not to upgrade Gradio, downgrading to Python 3.12 is also a viable workaround,and missing request in requestment.txt.