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
Copy file name to clipboardexpand all lines: docs/guides/use_python_recorder.md
+11-4
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ parent: How to Guides
17
17
---
18
18
Sometimes, when working on the frontend / backend of Adeus, you want an easier and faster feedback loop, one that does not require the use of the physical device. This is exactly what this guide is about.
19
19
20
-
#### Setup:
20
+
#### **Setup**:
21
21
22
22
first, let's go to the script's folder:
23
23
@@ -28,6 +28,13 @@ cd scripts/python_recorder_client
28
28
And now let's install it's requirements.
29
29
The script requires PyAudio to capture audio from your microphone, which has different setup to each OS:
30
30
31
+
Optional : Create a venv and activate before installing pip packages.
32
+
33
+
```bash
34
+
python -m venv venv
35
+
source venv/bin/activate
36
+
```
37
+
31
38
**Windows**
32
39
33
40
```bash
@@ -52,7 +59,7 @@ Now, we can install the rest of the requirements:
52
59
pip install -r requirements.txt
53
60
```
54
61
55
-
#### Run the script
62
+
#### **Run the script**
56
63
57
64
To run the script, you need to provide the --base-url (-u) and --token (-t) parameters, these are your Supabase (if you don't have these parameters, please go to the [setup tutorial](./index)).
0 commit comments