You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have searched to see if a similar issue already exists.
Is your feature request related to a problem? Please describe.
Yes, the problem is related to Gradio's compatibility with Python 3.13.0. While the documentation mentions that Gradio supports Python versions >= 3.10, it seems that Python 3.13.0, the most recent python release, is not fully compatible due to issues with some dependencies, such as pydub and audioop. Specifically, audioop is not found in Python 3.13.0, which causes a ModuleNotFoundError when running Gradio.
Steps to reproduce:
Install Python 3.13.0.
Create a virtual environment and install Gradio.
Run a basic Gradio app (the exemple given in readme.
Observe the error:
ModuleNotFoundError: No module named 'audioop'
Describe the solution you'd like
For the moment, i would like to update the readme to clearly state this issue.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Yes, the problem is related to Gradio's compatibility with Python 3.13.0. While the documentation mentions that Gradio supports Python versions >= 3.10, it seems that Python 3.13.0, the most recent python release, is not fully compatible due to issues with some dependencies, such as pydub and audioop. Specifically, audioop is not found in Python 3.13.0, which causes a
ModuleNotFoundError
when running Gradio.Steps to reproduce:
ModuleNotFoundError: No module named 'audioop'
Describe the solution you'd like
For the moment, i would like to update the readme to clearly state this issue.
The text was updated successfully, but these errors were encountered: