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: README.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -94,6 +94,14 @@ Whisper-AT can be installed simply by:
94
94
95
95
pip install whisper-at
96
96
97
+
For Mac users, there is a known bug, please use the following workaround:
98
+
```bash
99
+
# install all dependencies except triton, this will break when it tries to install triton
100
+
pip install whisper-at
101
+
# install whisper-at without any dependency
102
+
pip install --no-deps whisper-at
103
+
```
104
+
97
105
Note that following original Whisper, it also requires the command-line tool [`ffmpeg`](https://ffmpeg.org/) to be installed on your system. Please check OpenAI Whisper repo for details.
0 commit comments