AhmadHakami
commited on
Commit
•
bce8111
1
Parent(s):
348474d
Update requirements.txt
Browse filesWhen you clone this repository and run the `app.py` file, install the `gradio` library to fix this error message:
```bash Public/voice-chat-with-mistral/app.py", line 19, in <module>
import gradio as gr
ModuleNotFoundError: No module named 'gradio'```
- requirements.txt +2 -0
requirements.txt
CHANGED
@@ -8,10 +8,12 @@ mecab-python3==1.0.6
|
|
8 |
unidic-lite==1.0.8
|
9 |
unidic==1.1.0
|
10 |
langid
|
|
|
11 |
deepspeed
|
12 |
pydub
|
13 |
librosa
|
14 |
ffmpeg-python
|
|
|
15 |
gradio_client
|
16 |
emoji
|
17 |
asyncio
|
|
|
8 |
unidic-lite==1.0.8
|
9 |
unidic==1.1.0
|
10 |
langid
|
11 |
+
gradio
|
12 |
deepspeed
|
13 |
pydub
|
14 |
librosa
|
15 |
ffmpeg-python
|
16 |
+
gradio
|
17 |
gradio_client
|
18 |
emoji
|
19 |
asyncio
|