conda 安装 graph-tool, 无需编译

1. 添加以下channels到~/.condarc

$ conda config --add channels conda-forge
$ conda config --add channels ostrokach-forge

2. 安装graph-tool

$ conda install graph-tool

3. 进入python terminal 检查是否安装成功

>>> from graph_tool.all import *
原文地址:https://www.cnblogs.com/laresh/p/9896050.html