A succesfull `graph-tool` installation on Mac
May 17, 2018 by Kinh Nguyen
Requirements:
brew install gtk+3 pygobject3
- If there is a permission denied, run
sudo chown -R "$USER":admin /usr/local
- If there is a permission denied, run
- Ensure to run default python on mac, run
python2.7 -m ensurepip --default-pip
- Install matplotlib
python2.7 -mpip install -U matplotlib
,sudo
is needed. - Install graph-tool
port install py-graph-tool
Run graph-tool
with the default python
$ python2.7
Python 2.7.15 (default, May 2 2018, 00:53:27)
[GCC 4.2.1 Compatible Apple LLVM 9.1.0 (clang-902.0.39.1)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import graph_tool
>>>
Finally no errors or warnings.