要使princessrvc起作用,请首先创建一个VENV(虚拟环境):
- 右键单击您的文件夹,然后打开其中的终端。
- 键入此命令:
python -m venv [insert venv name here]。 - 要初始化VENV,请输入:
.\\[venvname]\\Scripts\\activate。 If this doesn\’t work, you will need to derestrict your execution-policy in Powershell (https://learn.micros***oft.com/en-us/powershell/module/microsoft.powershell.security/set-executionpolicy?view=powershell-7.4).
此后,您的文件夹应在其左侧带有绿色(VENV) 。现在,我们必须安装要求:
- 为NVIDIA GPU键入此命令:
python pip install -r .\\requirements-cuda.txt。 - 为AMD GPU键入此命令:
python pip install -r .\\requirements-amd.txt。 - 为Intel GPU键入此命令:
python pip install -r .\\requirements-ipex.txt。
安装要求后,您将在推理或培训之前首先需要一些文件:
为此,只需运行命令: python tools/download_models.py
要启动RVC(确保您的VENV环境初始化.\\[venvname]\\Scripts\\activate
- 键入此命令:
python .\\infer-web.py。
希望您的RVC现在应该完美运行!享受<3
