我在ubuntu 14.04,python 3.5.4上安装了图形工具2.26。
我可以使用图形工具,但似乎不完整。
例如,我看到了这个错误:
AttributeError: module 'graph_tool.draw' has no attribute 'draw_hierarchy'
在安装之前,我确保已安装所有依赖项(此处为https://git.skewed.de/count0/graph-tool/wikis/installation-instructions#manual-compilation),但我可能遇到安装了某些内容但在安装过程中未找到/正确链接的情况。
鉴于找不到draw_hierarchy
,很明显哪些依赖项可能缺失或者版本不合适?
这是我安装graph-tool时的配置摘要。
答案 0 :(得分:0)
简答:GTK + 3
当我收到问题中提到的错误时,我有GTK + 3,但显然不是Python GTK + 3.
重新开始并做
$ conda install -y -c conda-forge pygobject
$ conda install -y -c ostrokach gtk
在安装图形工具之前,我能够获得缺少的图形工具功能,例如问题中提到的draw_hierarchy
。