From bc409dbf20d4da58eac9759171e19dcbdbae0b93 Mon Sep 17 00:00:00 2001 From: Joey Parrish Date: Sat, 26 Apr 2025 09:47:12 -0700 Subject: [PATCH] Fix pip commands in usage docs When using conda activate, `python` points to the hermetic interpreter, but `pip` may still point to some global installation. Instead, use `python -m pip`. --- docs/USAGE.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/USAGE.md b/docs/USAGE.md index ff051a83..d06b8371 100644 --- a/docs/USAGE.md +++ b/docs/USAGE.md @@ -41,7 +41,7 @@ conda create -n openvoice python=3.9 conda activate openvoice git clone git@github.com:myshell-ai/OpenVoice.git cd OpenVoice -pip install -e . +python -m pip install -e . ``` No matter if you are using V1 or V2, the above installation is the same. @@ -64,7 +64,7 @@ Download the checkpoint from [here](https://myshell-public-repo-host.s3.amazonaw Install [MeloTTS](https://github.com/myshell-ai/MeloTTS): ``` -pip install git+https://github.com/myshell-ai/MeloTTS.git +python -m pip install git+https://github.com/myshell-ai/MeloTTS.git python -m unidic download ```