I’ve installed c-igraph a few days ago, and now I’m installing python-igraph using
pip3 install python-igraph
Then run one small program to check igraph is working or not.But its showing-
from igraph import Graph
ImportError: cannot import name ‘Graph’ from partially initialized module ‘igraph’ (most likely due to a circular import)
After that, I checked the python version using
python
import igraph
Traceback (most recent call last):
File “”, line 1, in
File “igraph.py”, line 1, in
from igraph import Graph
ImportError: cannot import name Graph