在Debian wheezy上安装python3-networkx

时间:2015-09-29 01:33:18

标签: python linux debian networkx apt-get

我尝试运行一个脚本,需要python3和networkx

python3-networkx不在apt-repository中,所以我使用:

安装它
apt-get install python-networkx

但我的剧本仍在崩溃,说没有找到networkx。

如何安装python3版本?

1 个答案:

答案 0 :(得分:4)

要在Debian中安装包装,您可以运行:

sudo apt-get update
sudo apt-cache search networkx

其中显示了这一点:

python-networkx - tool to create, manipulate and study complex networks
python-networkx-doc - tool to create, manipulate and study complex networks - documentation
python3-networkx - tool to create, manipulate and study complex networks (Python3)

然后你可以运行:

sudo apt-get install python-networkx

或者,您可以使用pip:

sudo apt-get update
sudo apt-get install python-pip
sudo pip install networkx

我在jessie中尝试了这个,它与python 2.7一起使用。

要安装python3,您可以使用:

sudo apt-get update
sudo apt-get install python3 python3-pip 

并安装networkx:

在Debian jessie:

sudo pip3 install networkx

在Debian Wheezy:

sudo pip-3.2 networkx

您可以在linux终端中查看有关apt-get hereman apt-get的更多信息。

您也可以查看点子文档here