I have installed graph-tool using this line on mac 10.14:
conda create --name graphtool -c conda-forge graph-tool
However, when I try to use on of the example codes on graph-tool website I got an error message regarding gtk:
----> 1 from graph_tool.all import *
...
ValueError: Namespace Gtk not available
I have tried to install gtk3 using Homebrew (brew install gtk+3
), but it doesn't seems to help and I still get the same error.
Anyone had the same problem?