pip install networkx python import networkx as nx G = nx.Graph() G.add_node(1) G.add_nodes_from([2, 3, 4]) G.add_edge(1, 2) G.add_edges_from([(2, 3), (3, 4), (4, 1)]) nx.draw(G, with_labels=True)