From 705894eab44702a114ffcf37e41c677820ff93e9 Mon Sep 17 00:00:00 2001 From: Evan King Date: Sun, 24 Nov 2024 13:23:25 -0600 Subject: [PATCH] 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. --- README.md | 2 +- demo/moonshine-onnx/requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index df3cb5c..d4b0b80 100644 --- a/README.md +++ b/README.md @@ -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://git@github.com/usefulsensors/moonshine.git#subdirectory=moonshine-onnx +uv pip install useful-moonshine-onnx@git+https://git@github.com/usefulsensors/moonshine.git#subdirectory=moonshine-onnx ``` ### 3. Try it out diff --git a/demo/moonshine-onnx/requirements.txt b/demo/moonshine-onnx/requirements.txt index ec8ff3c..f37d7e6 100644 --- a/demo/moonshine-onnx/requirements.txt +++ b/demo/moonshine-onnx/requirements.txt @@ -1,3 +1,3 @@ silero_vad sounddevice -useful-moonshine-onnx @ git+https://git@github.com/usefulsensors/moonshine.git#subdirectory=moonshine-onnx +useful-moonshine-onnx@git+https://git@github.com/usefulsensors/moonshine.git#subdirectory=moonshine-onnx