-
Notifications
You must be signed in to change notification settings - Fork 81
ERROR: could not spawn neato -Tx11
: no such file or directory (ENOENT)
#215
Comments
@piperod, can you give a minimal way to reproduce this error? |
Thanks @kmsquire and @jagot for your answers. I did what @jagot suggested and it worked, but now I am getting this message : "Format: "x11" not recognized. Use one of: bmp canon cgimage cmap cmapx cmapx_np dot eps exr fig gif gv icns ico imap imap_np ismap jp2 jpe jpeg jpg pct pdf pic pict plain plain-ext png pov ps ps2 psd sgi svg svgz tga tif tiff tk vml vmlz xdot xdot1.2 xdot1.4" |
And @kmsquire I am following the steps described in the documentation at 1.8 https://media.readthedocs.org/pdf/graphsjl-docs/latest/graphsjl-docs.pdf |
Hi @piperod, are you still seeing this error? Seems to be working fine on Ubuntu 12.04 and 14.04... g = simple_graph(3)
add_edge!(g, 1, 2)
add_edge!(g, 3, 2)
add_edge!(g, 3, 1)
plot(g) |
A work around is to export to file and convert to pdf separately: fh = open("temp.dot","w")
write(to_dot(g))
close(fh) Then in command line you can run neato (or equivalent graphviz process) to draw the graph: neato -Tpdf temp.dot -o graphpicture.pdf |
I am running Julia v.0.5. and Graphs v. 0.6 on OS El capitan. The full error I get is :
The text was updated successfully, but these errors were encountered: