ERROR: Could not find a version that satisfies the requirement torch_geometric (from versions: none)
时间: 2023-10-20 09:34:00 浏览: 168
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
您好!对于torch_geometric库,您可能遇到了版本不匹配的问题。请确保您的Python环境中已经安装了torch和torchvision,并且它们的版本与torch_geometric兼容。此外,您还需要安装适合您系统的PyTorch Geometric的预编译包。您可以根据您的PyTorch和CUDA版本在官方网站上找到适合您的预编译包。您可以尝试使用以下命令安装torch_geometric:
```
pip install torch-scatter torch-sparse torch-cluster torch-spline-conv torch-geometric
```
如果您仍然遇到问题,请确保您的Python环境和依赖项都正确设置,并尝试使用更具体的错误消息来搜索解决方案。希望这可以帮助到您!如果您有任何其他问题,请随时问我。
阅读全文