PackagesNotFoundError: The following packages are not available from current channels: - torch-geometric=2.0.1
时间: 2023-11-12 09:59:09 浏览: 178
anaconda安装pytorch时报错PackagesNotFoundError: The following packages are not available from current cha
5星 · 资源好评率100%
这个错误提示表明你在当前的软件源中找不到名为 torch-geometric 版本为 2.0.1 的包。可能的原因是该包没有被添加到你的软件源中,或者你的软件源已经过时了。你可以尝试更新软件源并重新安装该包,或者手动安装该包。
如果你使用的是 Anaconda,可以尝试使用以下命令安装:
```
conda install -c rusty1s -c conda-forge torch-geometric=2.0.1
```
如果你使用的是 pip,可以尝试使用以下命令安装:
```
pip install torch-geometric==2.0.1
```
阅读全文