-
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.
Fix install commands for useful-moonshine-onnx
The previous pip install commands in the instructions and requirements erroneously included some whitespace, which resulted in errors when users attempted to install using the install instructions. This commit corrects the error by removing the whitespace.
- Loading branch information
Showing
2 changed files
with
2 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 |
---|---|---|
|
@@ -116,7 +116,7 @@ Using Moonshine with the ONNX runtime is preferable if you want to run the model | |
the package with minimal dependencies to support these use cases. To use it, run the following: | ||
|
||
```shell | ||
uv pip install useful-moonshine-onnx @ git+https://[email protected]/usefulsensors/moonshine.git#subdirectory=moonshine-onnx | ||
uv pip install useful-moonshine-onnx@git+https://[email protected]/usefulsensors/moonshine.git#subdirectory=moonshine-onnx | ||
``` | ||
|
||
### 3. Try it out | ||
|
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,3 +1,3 @@ | ||
silero_vad | ||
sounddevice | ||
useful-moonshine-onnx @ git+https://[email protected]/usefulsensors/moonshine.git#subdirectory=moonshine-onnx | ||
useful-moonshine-onnx@git+https://[email protected]/usefulsensors/moonshine.git#subdirectory=moonshine-onnx |