Failing to install python-igraph
Using Ubuntu 16 and Python3.
pip3 install python-igraph
results in error building whell. However,
sudo apt-get install python3-igraph
worked just fine.
You need igraph libraries before compiling python-igraph.
Try sudo apt-get install -y libigraph0-dev
and try install python-igraph again.