Spaces:
Sleeping
Sleeping
Commit
·
b08f4ec
1
Parent(s):
6104f90
python-espeak-ng
Browse files- .vscode/launch.json +28 -0
- requirements.txt +2 -1
.vscode/launch.json
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
// Use IntelliSense to learn about possible attributes.
|
3 |
+
// Hover to view descriptions of existing attributes.
|
4 |
+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
5 |
+
"version": "0.2.0",
|
6 |
+
"configurations": [
|
7 |
+
{
|
8 |
+
"name": "Python: Current File",
|
9 |
+
"type": "python",
|
10 |
+
"request": "launch",
|
11 |
+
"program": "${file}",
|
12 |
+
"console": "integratedTerminal",
|
13 |
+
"justMyCode": true,
|
14 |
+
"env": {
|
15 |
+
"PYTHONPATH": "${workspaceFolder}"
|
16 |
+
},
|
17 |
+
"python": "/home/ubuntu/apps/python/tts-env/bin/python",
|
18 |
+
"args": [
|
19 |
+
"-m",
|
20 |
+
"venv",
|
21 |
+
"/home/ubuntu/apps/python/tts-env",
|
22 |
+
"&&",
|
23 |
+
"source",
|
24 |
+
"/home/ubuntu/apps/python/tts-env/bin/activate"
|
25 |
+
]
|
26 |
+
}
|
27 |
+
]
|
28 |
+
}
|
requirements.txt
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
gradio==3.38.0
|
2 |
TTS==0.15.6
|
3 |
numpy==1.22.0;python_version<="3.10"
|
4 |
-
numpy==1.24.3;python_version>"3.10"
|
|
|
|
1 |
gradio==3.38.0
|
2 |
TTS==0.15.6
|
3 |
numpy==1.22.0;python_version<="3.10"
|
4 |
+
numpy==1.24.3;python_version>"3.10"
|
5 |
+
python-espeak-ng
|