Reputation: 131
I have tried to install Igraph for python but of no avail I followed the procedure given on http://igraph.org/python/doc/tutorial/install.html
I even tried Pycairo procedure given at the end of the site
But igraph is not working either on Enthought Canopy or Anaconda
Please help
Upvotes: 6
Views: 9362
Reputation: 14584
Try using a precompiled binary here: http://www.lfd.uci.edu/~gohlke/pythonlibs/#python-igraph
Choose the proper version, use pip and type:
python -m pip install path/to/igraph.whl
Do not change the wheel name. Make sure you have pip, wheel and setuptools installed.
Upvotes: 10