欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

conda pip 安装 dgl 并运行demo 出现:Segmentation fault (core dumped) 错误

程序员文章站 2023-09-28 19:16:48
安装dgl 并运行的时候,出现了如上错误,很是郁闷;使用 gdb python; run train.py 进行调试,发现是torch的问题;我猜测估计是torch 安装的版本过于新;于是重新安装 1.0.0 版本; 解决上述问题; dgl-cu90 0.4.1 torch 1.0.0 ~/Desk ......

安装dgl 并运行的时候,出现了如上错误,很是郁闷;使用 gdb python; run train.py 进行调试,发现是torch的问题;我猜测估计是torch 安装的版本过于新;于是重新安装 1.0.0 版本; 解决上述问题;

dgl-cu90            0.4.1
torch               1.0.0
~/desktop/dgl/examples/pytorch/gcn$ python train.py --dataset cora --gpu 1

保持更新,更多内容请关注 cnblogs.com/xuyaowen;

参考链接:

gdb python
 >> run demo.py
.....
>> bt (列出调用栈)

上述运行模式,可以 run the python script via gdb and show the traceback; 很好的命令行调试技巧;