安装torch-geometric没报错,导入包时需要torch-sparse,geometric包需要这个依赖。 所以就安装torch-sparse,但是一直报错,类似于: ERROR: Command errored out with exit status 1: command: 'C:\Users\hastings\anaconda3\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\Users...
按照官网步骤安装完torch-scatter、torch-sparse、torch-cluster和torch-spline-conv等依赖项,也成功安装了torch_geometric,但在导入的时候还是报错: 原因是没有C++环境,在该网址中https://visualstudio.microsoft.com/visual-cpp-build-tools/下载并安装C/C++ DLL 动态链接库,即可成功使用torch_geometric...
1、也是先知道要安装的torch_scatter的版本。 2、进这个网站: https://data.pyg.org/whl/ https://pytorch-geometric.com/whl/ 3、选择你的pytorch版本,比如我的是pytorch2.1.2,并且我要装GPU版本,而且我的cuda是11.8版本的: 4、进去后,直接搜你想要的包,然后按照你的python版本和操作系统选择,比如: 5、点...
这一步也可以指定torch_geometric的版本安装,如pip install torch_geometric==2.0.4 -ihttps://pypi.doubanio.com/simple。也可用其他镜像源。 pip install torch_geometric==2.0.4 -i https://pypi.doubanio.com/simple 或者 pip install torch_geometric -i https://mirrors.aliyun.com/pypi/simple 或者 pi...
安装完pytorch_geometric后,想运行代码,但是会报错,提示如下: ModuleNotFoundError: No module named 'torch.profiler' 报错情况如图1所示: 图1 报错 寻找原因,这主要是因为pytorch版本过低的原因。这个torch.profiler模块是在pytorch v1.8.1版本才开始有的,之前的版本没有这个模块。一种方法是重新建一个虚拟环境,然...
1 不能简单的直接pip install torch_geometric或者 conda install torch_geometric 2 直接安装,到后面调用的时候还是会报错.需要先安装四个小部件再安装torch_geometric STEP 1 : 首先检查自己的pytorch版本 Import torch torch.__version__ #查看cpu版本
最近在学图神经网络,于是用到了torch-geometric。在经过一系列麻烦的安装过程之后,结果一运行就报错了——OSError:torch_sparse/_version.so: undefined symbol:_ZN5torch3jit17parseSchemaOrNameERKSs。面对这个一头雾水的错误,第一反应猜测是安装问题或者是版本问... ...
安装完torch geometric,import torch_geometric然后报错:OSError: [WinError 127] 找不到指定的模块 我用的是CPU,没用GPU,不过这个与使不使用GPU好像没关系。 对于import torch_geometric然后报错: OSError: [WinError 127] 找不到指定的模块 我找到了原因,根本的内在原因是:torch_geometric这个包在调用的时候,会...
我的python=3.9.2,按照官方文档和论坛找的资料安装了pytorch开发环境,安装的pytorch=1.11.0,torch_npu=1.11.0,torch_geometric=2.3.1,但是运行代码会报错:AttributeError: module 'torch' has no attribute 'sparse_csc',网上找的资料说应该是torch、torch_geometric和torch_cluster、torch_scatter、torch_sparse、tor...