hi,
i am trying to use networkx with
python, when i run this program, it get this error, is there anything missing?
#!/usr/bin/env
python
import networkx as nx
import matplotlib
import matplotlib.pyplot
import matplotlib.pyplot as plt
G=nx.Graph()
G.add_node(1)
G.add_nodes_from([2,3,4,5,6,7,8,9,10])
…