atom and networkx

在你的Ubuntu/Linux Mint上安装Atom

PPA安装,打开终端使用以下命令安装:

sudo add-apt-repository ppa:webupd8team/atom
sudo apt-get update
sudo apt-get install atom

安装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

猜你喜欢

转载自my.oschina.net/u/3704723/blog/1786689