ubuntu16.04下安装igraph问题汇总
在安装igraph过程中遇到了一些问题,在这里记录一下
igraph or python-igraph
如果你执行的是pip install igraph,那么恭喜你,你其实安装的是jgraph,一个开源绘图软件的python接口。所以这里应该执行的是pip install python-igraph
Could not download and compile the C core of igraph.
igraph的底层是基于C的,所以你得预先安装它的C版本,执行一下命令:
1sudo apt-get install -y libigraph0-dev
这个时候,我们才能放心地在终端敲下:1sudo pip install python-igraph
安装完成!