简体   繁体   English

“ Read_Ncol”出口,错误代码-1073740791

[英]“Read_Ncol” exit with error code -1073740791

I am using python 3.5.3 and igraph 0.7.1. 我正在使用python 3.5.3和igraph 0.7.1。

Why the following code finishes with "Process finished with exit code -1073740791 (0xC0000409)" error message. 为什么以下代码以"Process finished with exit code -1073740791 (0xC0000409)"错误消息"Process finished with exit code -1073740791 (0xC0000409)"

from igraph import Graph

g = Graph.Read_Ncol('test.csv', directed=False)

test.csv test.csv

119 205
119 625
124 133
124 764
124 813
55 86
55 205
55 598
133 764

The Read_Ncol function reads files in NCOL format, as produced by the Large Graph Layout program. Read_Ncol函数读取由大图布局程序生成的NCOL格式的文件。

Your example works fine for me, also on Python 3.5.3 with igraph 0.7.1. 您的示例对我来说也很好,在使用igraph 0.7.1的Python 3.5.3上也可以。

>>> g = Graph.Read_Ncol('test.csv', directed=False)
>>> g
<igraph.Graph object at 0x10c4844f8>
>>> print(g)
IGRAPH UN-- 10 9 --
+ attr: name (v)
+ edges (vertex names):
119--205, 119--625, 124--133, 124--764, 124--813, 55--86, 205--55, 55--598,
133--764

It seems the error C0000409 means "Stack Buffer Overrun" on Windows, which probably means that your program is writing outside of the space allocated on the stack (it's different from a stack overflow, according to this Microsoft Technet Blog .) 似乎错误C0000409在Windows上表示“堆栈缓冲区溢出”,这可能意味着您的程序正在超出堆栈上分配的空间进行写入( 根据此Microsoft Technet Blog的说法,这与堆栈溢出不同)。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 进程以退出代码 -1073740791 (0xC0000409) Tensorflow 错误结束 - Process finished with exit code -1073740791 (0xC0000409) Tensorflow error 进程完成,退出代码 -1073740791 (0xC0000409) pycharm 错误 - Process finished with exit code -1073740791 (0xC0000409) pycharm error Pycharm 错误“进程以退出代码 -1073740791 (0xC0000409) 完成” - Pycharm error "Process finished with exit code -1073740791 (0xC0000409)" Python 和 Qt:在 QTextEdit 中读取文本文件 - 程序崩溃,退出代码为 -1073740791 (0xC0000409) - Python and Qt: Read text file in QTextEdit - program crashes with exit code -1073740791 (0xC0000409) 进程已完成,退出代码为 -1073740791 (0xC0000409) 错误,无法打开网站 - Process finished with exit code -1073740791 (0xC0000409) error not opening a website 这是什么错误,我该如何解决? 进程以退出代码 -1073740791 (0xC0000409) 结束 - What is this error and how do I fix it? Process finished with exit code -1073740791 (0xC0000409) 非常基本的 pyqt5 对话框应用程序以退出代码 -1073740791 退出 - Very basic pyqt5 dialog app quits with exit code -1073740791 GPU训练时Tensorflow 2.5退出代码-1073740791 - Tensorflow 2.5 exit code -1073740791 when GPU training 使用XGBoost在PyCharm上以退出代码-1073740791(0xC0000409)退出的过程完成 - Process finished with exit code -1073740791 (0xC0000409) on PyCharm with XGBoost Web抓取大数据时,进程以退出代码-1073740791(0xc0000409)完成 - Process finished with exit code -1073740791 (0xc0000409) when web scraping large data
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM