我在 ubuntu 14.04.3 上安装 mininet,安装过程中出现错误“ImportError:没有名为 setuptools 的模块”。我尝试使用 sudo apt-get install python-setuptools 安装它,它显示它已经是最新版本。但安装仍然失败。
为了安装 mininet,我按照以下步骤进行操作https://github.com/mininet/mininet/blob/master/INSTALL并尝试了以下命令
git clone git://github.com/mininet/mininet.git
cd mininet
git tag
git checkout 2.2.1
util/install.sh -n
然后安装运行并在显示错误之间停止。
答案1
使用此命令安装必要的包
sudo apt-get install python3-setuptools
如果应用程序是 python2,请使用这个
sudo apt-get install python-setuptools