-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move numba package install to README
The parent does not directly depends on `numba` thus this change removes it from the requirements file. It is added as documentation.
- Loading branch information
Showing
2 changed files
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,9 +79,12 @@ You will need to clone the repo first: | |
git clone [email protected]:usefulsensors/moonshine.git | ||
``` | ||
|
||
Then install the demo's requirements: | ||
Then install the demo's requirements including mitigation for a failure to build | ||
and install `llvmlite` without `numba` package: | ||
|
||
```shell | ||
uv pip install numba | ||
|
||
uv pip install -r moonshine/demo/moonshine-onnx/requirements.txt | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
numba | ||
silero_vad | ||
sounddevice | ||
useful-moonshine-onnx@git+https://[email protected]/usefulsensors/moonshine.git#subdirectory=moonshine-onnx |