Re: [graph-tool] Analysing and visualising

2020-04-23 Thread peterhuson
Hi James, I'm wondering how you were able to resolve the error from the X server: > Unable to init server: Could not connect: Connection refused XQuartz is installed, and I know it works because I have been able to forward X applications to it previously using ssh -X. I'm on OSX 10.12 using

Re: [graph-tool] Analysing and visualising

2020-04-23 Thread Berg, Stuart
Hi Peter, I don't know the answer to your question about Docker and X11. But just in case it's useful, I'll point out that the easiest way to run graph-tool on Mac is probably to use conda or homebrew. Both of those options provide pre-compiled binaries, so installation should (hopefully) be

[graph-tool] graph_union issue

2020-04-23 Thread BleakHeart
Hello, I am trying to do the union of 3 different geometric_graph. This is what I wrote: from graph_tool.all import * from gi.repository import Gtk, Gdk import numpy as np # M networks with N total vertices N = 1500 M = 3 G = Graph(directed=False) for i in range(M): points =

Re: [graph-tool] graph_union issue

2020-04-23 Thread BleakHeart
Yeah, right now I've understood the problem and I've solved it. Thank you!! -- Sent from: http://main-discussion-list-for-the-graph-tool-project.982480.n3.nabble.com/ ___ graph-tool mailing list graph-tool@skewed.de

Re: [graph-tool] graph_union issue

2020-04-23 Thread Tiago de Paula Peixoto
Am 23.04.20 um 19:22 schrieb BleakHeart: > Hello, > > I am trying to do the union of 3 different geometric_graph. > This is what I wrote: > > from graph_tool.all import * > from gi.repository import Gtk, Gdk > import numpy as np > > # M networks with N total vertices > N = 1500 > M = 3 > >