之前一直是说代码有问题
最后调试完毕后正确的ubuntu终端报错如下
root@sdnhubvm:/home/ubuntu/floodlight/apps/qos# ./qosmanager2.py enable localhost 8080
Traceback (most recent call last):
File "./qosmanager2.py", line 23, in <module>
import simplejson # converts between JSON and python objects
ImportError: No module named simplejson
看了一下是因为没有安装simplejson
那么就简单了,在线安装下就好了:
方式1
进入终端,输入如下命令:
sudo apt-get install python-simplejson
方式2
1.下载文件:https://pypi.python.org/pypi/simplejson/ ,最新版本为3.1.0
2.打开终端,命令行进入文件存放目录,如 ~/pythonPKG
3.解压文件:tar -zxvf simplejson-3.1.0.tar.gz 4.进入simplejson文件夹,运行命令:python setup.py 或者先进如python编程模式,输入 setup.py install