我努力在我的Mac上成功安装和运行igraph。我在Mac OSX 10.10.2上使用Python 2.7.9,Anaconda 2.2.0
看来我已经成功安装了igraph,当我输入
时import igraph
或
from igraph import *
没有抱怨。
print igraph.__version__
产生以下输出:
0.1.6
但是当我尝试使用
时g = igraph.Graph(1)
或
g = Graph(1)
(取决于我导入的方式)我收到以下错误:
AttributeError: 'module' object has no attribute 'Graph'
dir(igraph)
产生以下内容:
['__author__',
'__builtins__',
'__doc__',
'__file__',
'__license__',
'__name__',
'__package__',
'__path__',
'__title__',
'__version__',
'draw',
'force_directed_layout',
'generate',
'json_formatter',
'notebook',
'to_json']
所以我想应该把图形看作一个属性?
还有其他人遇到过这个问题吗?