I would like to use certain features of the Python library Igraph in Julia-lang. I am aware that there exists a Julia package Graphs but I specifically need Igraph. I have previously used python libraries with PyCall, but this time when I do.
using PyCall
@pyimport igraph
But I get error:
@pyimport not defined
My current Julia version is: 0.4.0-dev+147
Thanks in advance
@pyimportis not defined but you've used it successfully before? That's weird. PerhapsPyCalldidn't load correctly...? - Alex A.