Update README_en.md
Browse files- README_en.md +17 -1
README_en.md
CHANGED
@@ -55,4 +55,20 @@ Next, run the web demo to access the model:
|
|
55 |
```bash
|
56 |
python web_demo.py
|
57 |
```
|
58 |
-
You can then access the model by visiting `http://localhost:8888`.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
```bash
|
56 |
python web_demo.py
|
57 |
```
|
58 |
+
You can then access the model by visiting `http://localhost:8888`.
|
59 |
+
|
60 |
+
### Additional Dependencies
|
61 |
+
If running the web_demo prompts that `matcha.models` is missing, you might see the following error:
|
62 |
+
|
63 |
+
```bash
|
64 |
+
ModuleNotFoundError: No module named 'matcha.models'; 'matcha' is not a package
|
65 |
+
```
|
66 |
+
|
67 |
+
In this case, you need to install `matcha-tts`:
|
68 |
+
|
69 |
+
```bash
|
70 |
+
# First, uninstall gradio and diffusers to avoid version conflicts
|
71 |
+
pip uninstall gradio
|
72 |
+
pip uninstall diffusers
|
73 |
+
pip install matcha-tts
|
74 |
+
```
|