Solving environment: failed PackagesNotFoundError: The following packages are not available from current channels: - torchaudio
时间: 2023-12-12 13:36:12 浏览: 204
anaconda安装pytorch时报错PackagesNotFoundError: The following packages are not available from current cha
5星 · 资源好评率100%
由于当前的软件源中没有所需的软件包,因此出现了“PackagesNotFoundError”的错误。解决此问题的一种方法是添加正确的软件源并更新软件包列表。您可以尝试以下步骤:
1. 首先,尝试更新conda:
```shell
conda update conda
```
2. 如果更新conda后仍然无法找到软件包,则可以尝试添加conda-forge软件源:
```shell
conda config --add channels conda-forge
```
3. 然后,尝试安装torchaudio:
```shell
conda install torchaudio
```
如果上述步骤仍然无法解决问题,请尝试使用pip安装torchaudio:
```shell
pip install torchaudio
```
阅读全文