0

我为我的研究编写了一个 POX 控制器脚本,它在Python 2.7解释器下运行良好(使用 PyCharm IDE)。但是,当我选择 时Python 3.5.1,我收到以下错误:

/usr/bin/python3.5 /home/XXX/pox/pox.py openflow.discovery my_controller
Traceback (most recent call last):
  File "/home/XXX/pox/pox.py", line 42, in <module>
    import pox.boot
  File "/home/XXX/pox/pox/boot.py", line 55, in <module>
    import pox.core
  File "/home/XXX/pox/pox/core.py", line 155, in <module>
    import pox.lib.recoco as recoco
  File "/home/XXX/pox/pox/lib/recoco/__init__.py", line 1, in <module>
    import recoco
ImportError: No module named 'recoco'

Process finished with exit code 1

以前有人遇到过这样的错误吗?

谢谢

4

1 回答 1

1

我对 Python 3.X 有同样的问题。

根据文档POX 自述文件POX Wiki:Does POX support Python 3 ,POX 需要 Python 2.7 。

要使用 Python 3 运行 POX,首先需要将 POX 移植到 Python 3。

使用 Python 2.7,任何东西都可以正常工作。

于 2016-07-30T17:26:53.817 回答