(vits) G:\AI\tts\推理\VITS-fast-fine-tuning-webui-v1.1>conda install conda Collecting package metadata (current_repodata.json): failed UnavailableInvalidChannel: HTTP 403 FORBIDDEN for channel whl/cu116 <https://download.pytorch.org/whl/cu116> The channel is not accessible or is invalid. You will need to adjust your conda configuration to proceed. Use `conda config --show channels` to view your configuration's current state, and use `conda config --show-sources` to view config file locations.
时间: 2024-02-20 07:57:43 浏览: 156
VITS-fast-fine-tuning训练准备的样例数据,内容包含预训练模型、配置文件、语音素材等
5星 · 资源好评率100%
看起来你的conda配置有问题,无法访问PyTorch的下载渠道。你可以使用以下命令查看你当前的conda配置:
```
conda config --show
```
然后查看输出中的 `channels` 部分,确认是否包含了 `pytorch` 渠道。如果没有,你可以尝试添加该渠道:
```
conda config --add channels pytorch
```
这应该可以将 `pytorch` 渠道添加到你的conda配置中。然后你可以尝试再次运行之前的命令:
```
conda install --extra-index-url https://download.pytorch.org/whl/cu116/ pytorch torchvision torchaudio -c pytorch
```
如果你仍然遇到问题,你可以尝试手动安装PyTorch,如我之前所述。
阅读全文