torch-geometric、torch-sparse、torch-scatter、torch-cluster、 torch-spline-conv安装

torch-geometric、torch-sparse、torch-scatter、torch-cluster、 torch-spline-conv安装时常常由于版本问题报各种错,很容易把我们气死,于是这篇文章总结了一个比较有用的办法。

  1. cmd卸载旧版本的torch-geometric、torch-sparse、torch-scatter、torch-cluster、 torch-spline-conv(有啥卸啥)
    pip uninstall torch-scatter torch-sparse torch-cluster torch-spline-conv
  2. 查看自己的torch版本以及cuda(之前有文章说必须要有cuda才能安装这些库,经检验是谣言)
    pip list
    torch版本,cpu
  3. 浏览器输入地址,如果能打开说明版本没有问题
    例如torch1.10.0+cpu 地址https://pytorch-geometric.com/whl/torch-1.10.0+cpu.html
    例如torch1.10.0+cuda10.2 地址https://pytorch-geometric.com/whl/torch-1.10.0+cu102.html
    总之在链接里面的torch后面修改torch版本,在+后面修改cuda或者cpu,如果是cuda的话确认cuda的版本加在cu后面
  4. 如果这个地址能打开,直接在命令行输入pip install torch-sparse -f 地址即可
    torch1.10.0+cpu为例,依次输入
    pip install torch-scatter -f https://pytorch-geometric.com/whl/torch-1.10.0+cpu.html
    pip install torch-sparse -f https://pytorch-geometric.com/whl/torch-1.10.0+cpu.html
    pip install torch-cluster -f https://pytorch-geometric.com/whl/torch-1.10.0+cpu.html
    pip install torch-spline-conv -f https://pytorch-geometric.com/whl/torch-1.10.0+cpu.html
    最后安装torch-geometric(别问为啥)
    pip install torch-geometric
    大功告成
    在这里插入图片描述

你可能感兴趣的:(pytorch,笔记,pytorch,深度学习,人工智能)