Update README.md
Browse files
README.md
CHANGED
@@ -61,4 +61,17 @@ python model_server.py
|
|
61 |
```bash
|
62 |
python web_demo.py
|
63 |
```
|
64 |
-
即可通过访问 `http://localhost:8888` 来使用模型。
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
```bash
|
62 |
python web_demo.py
|
63 |
```
|
64 |
+
即可通过访问 `http://localhost:8888` 来使用模型。
|
65 |
+
|
66 |
+
### 额外依赖
|
67 |
+
如果运行web_demo提示没有matcha.models
|
68 |
+
```bash
|
69 |
+
ModuleNotFoundError: No module named 'matcha.models'; 'matcha' is not a package
|
70 |
+
```
|
71 |
+
则需安装matcha-tts
|
72 |
+
```bash
|
73 |
+
# 先卸载 gradio 和 diffusers ,避免出现版本冲突
|
74 |
+
pip uninstall gradio
|
75 |
+
pip uninstall diffusers
|
76 |
+
pip install matcha-tts
|
77 |
+
```
|