要包含 draw_hierarchy,graph-tool 需要什么安装 dependencies/options?
What installation dependencies/options are needed for graph-tool to include draw_hierarchy?
我在 ubuntu 14.04、python 3.5.4.
上安装了 graph-tool 2.26
我可以使用图形工具,但它似乎不完整。
例如我见过这个错误:
AttributeError: module 'graph_tool.draw' has no attribute 'draw_hierarchy'
在安装之前,我确保安装了所有依赖项(在此处 https://git.skewed.de/count0/graph-tool/wikis/installation-instructions#manual-compilation 找到),但我可能 运行 遇到安装了某些东西但没有安装 found/properly 的情况安装时链接。
鉴于无法找到 draw_hierarchy
,是否明显缺少哪些依赖项或版本不合适?
这是我安装 graph-tool 时的配置摘要。
简答:GTK+ 3
我有 GTK+ 3,但显然不是 Python GTK+ 3,当我遇到问题中提到的错误时。
重新开始
$ conda install -y -c conda-forge pygobject
$ conda install -y -c ostrokach gtk
在安装graph-tool之前,我能够获得缺少的graph-tool功能,例如问题中提到的draw_hierarchy
。
我在 ubuntu 14.04、python 3.5.4.
上安装了 graph-tool 2.26我可以使用图形工具,但它似乎不完整。
例如我见过这个错误:
AttributeError: module 'graph_tool.draw' has no attribute 'draw_hierarchy'
在安装之前,我确保安装了所有依赖项(在此处 https://git.skewed.de/count0/graph-tool/wikis/installation-instructions#manual-compilation 找到),但我可能 运行 遇到安装了某些东西但没有安装 found/properly 的情况安装时链接。
鉴于无法找到 draw_hierarchy
,是否明显缺少哪些依赖项或版本不合适?
这是我安装 graph-tool 时的配置摘要。
简答:GTK+ 3
我有 GTK+ 3,但显然不是 Python GTK+ 3,当我遇到问题中提到的错误时。
重新开始
$ conda install -y -c conda-forge pygobject
$ conda install -y -c ostrokach gtk
在安装graph-tool之前,我能够获得缺少的graph-tool功能,例如问题中提到的draw_hierarchy
。