Hi ,
I am using
Python 3.8
igraph 0.8.2
OS: Windows 10
Code:
import igraph as ig
print(ig.__version__)
print("read")
ig=Graph()
movie = Graph.Read_GraphML(<FolderPath>//movies.GraphML")
print("read")
summary(movie)
Output:
PS C:\Users\intou\OneDrive\Desktop\igraph> & C:/Python3.8/python.exe c:/Users/intou/OneDrive/Desktop/igraph/abc.py
0.8.2
read
Traceback (most recent call last):
File "c:/Users/intou/OneDrive/Desktop/igraph/abc.py", line 11, in <module>
movie = ig.Graph.Read_GraphML("<Folder Path>\\movies.GraphML")
NotImplementedError: Error at d:\build\igraph\igraph-0.8.2-msvc\src\foreign-graphml.c:1446: GraphML support is disabled, Unimplemented function call
PS C:\Users\intou\OneDrive\Desktop\igraph>
Please let me know what wrong i am doing?
Regards
Vivek