ubuntu 安装networkx

1. 安装setuptools

wget https://bootstrap.pypa.io/ez_setup.py -O - | sudo python

2. 安装networkx

pip install networkx(在root权限下安装,否则报错,但我在安装时出现一些警告信息)

3. 安装numpy和matplotlib(支持networkx绘图)

sudo apt-get install python-numpy python-scipy python-matplotlib ipython ipython-notebook python-pandas python-sympy python-nose

4. 使用networkx

4.1新建graph.py (任意名字)

import networkx as nx

import matplotlib.pyplot as plt

def draw_graph(graph):

    # extract nodes from graph

    nodes = set([n1 for n1,n2 in graph] + [n2 for n1,n2 in graph])

    # create networkx graph

    G=nx.Graph()

    # add nodes

    for node in nodes:

        G.add_node(node)


    # add edges

    for edge in graph:

        G.add_edge(edge[0],edge[1])


    # draw graph

    pos = nx.shell_layout(G)

    nx.draw(G,pos)


    # show graph

    plt.show()


# draw example

graph = [(20,21),(21,22),(22,23),(23,24),(24,25),(25,20)]

draw_graph(graph)

执行后:

节点是:[20,21,22,23,24,25]

边:[(20,(20,25)]

[(20,25)]

相关文章

1.安装过程出现0x00000000指令引用的0x00000000内存该内存不能为written 如果你安装的是inux系统 需要在...
写在全面:如果根据以下教程涉及到只读文件需要更改文件权限才能需修改文件内容,参考我的另一篇博客:...
写在前面:以下步骤中需要在终端输入命令,电脑端查看博客的朋友可以直接复制粘贴到终端,手机端查看的...
ubuntu16.04和18.04更换国内源 写在前面:安装好ubuntu双系统后,默认的软件更新源是国外的,在国内使用...
ubuntu双系统启动时卡死解决办法(在ubuntu16.04和18.04测试无误) 问题描述: 在安装完ubuntu双系统后...
又来造轮子了。。。。。。。。。。。。。。。。 今天使用w3af向文件中写入的时候,发现没有write权限,...