Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

python - PyGraphViz agraph.layout() throws I0 error

After running the following Python code:

import pygraphviz as pgv
G=pgv.AGraph()
G.add_edge(1,2)
G.add_edge(2,3)
G.add_edge(3,4)
G.layout(prog='dot')
G.draw('1.png')

I got this trace in IDLE:

 File "<pyshell#7>", line 1, in <module>
   G.layout(prog='dot')
 File "C:Python27libsite-packagespygraphvizagraph.py", line 1302, in layout
   data=self._run_prog(prog,' '.join([args,"-T",fmt]))
 File "C:Python27libsite-packagespygraphvizagraph.py", line 1275, in _run_prog
   raise IOError("".join(errors))
 IOError: 'C:Program' is not recognized as an internal or external command,
 operable program or batch file.

Please help, I am working on a course project. Information: Graphviz installed correctedly

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

It looks like this is a bug with your version of PyGraphViz and Windows. I found this bug ticket describing it, but it was apparently fixed in 2011. It looks like they haven't actually released the update, but it should be in their SVN if you can switch to that.

If not, and you don't mind editing the source yourself, the actual fix they made is really trivial. Just find agraph.py, and change this line:

runprog=self._get_prog(prog) 

to

runprog=r'"%s"'%self._get_prog(prog)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...