Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install igraph for python on windows

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

like image 264
kshitij srivastava Avatar asked Dec 06 '15 02:12

kshitij srivastava


People also ask

How do I install Igraph?

The simplest way to install the igraph R package is typing install. packages("igraph") in your R session. If you want to download the package manually, the following link leads you to the page of the latest release on CRAN where you can pick the appropriate source or binary distribution yourself.


1 Answers

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.

like image 104
Alexander Huszagh Avatar answered Sep 29 '22 09:09

Alexander Huszagh