PackagesNotFoundError: The following packages are not available from current channels: - cudatoolkit=12.1
时间: 2023-11-17 15:04:14 浏览: 357
anaconda安装包cudatoolkit-11.8.0-hd77b12b-0.conda
这个错误提示表明当前的安装源中没有名为cudatoolkit=12.1的包可用。这可能是因为你的安装源不包含这个特定版本的包,或者这个包根本不存在于任何可用的安装源中。解决这个问题的方法是手动下载这个包的whl文件并使用pip或conda进行安装。你可以尝试使用其他的安装源,例如官方源或者其他第三方源,来查看是否有这个包的可用版本。如果你使用的是conda进行安装,你还可以尝试在condarc配置文件中添加新的安装源。以下是一些可能有用的命令和示例:
使用pip安装cudatoolkit=12.1:
```
pip install cudatoolkit==12.1
```
使用conda安装cudatoolkit=12.1:
```
conda install -c anaconda cudatoolkit=12.1
```
添加清华源到condarc配置文件:
```
channels:
- defaults
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
```
阅读全文