0

操作系统: CentOS 7.0 x64
解释器: Python 3.4.1 从源代码编译--enable-shared

示例命令:

$ python3.4 -c "import locust"

追溯:

Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/usr/local/lib/python3.4/site-packages/locust/__init__.py", line 1, in <module>
  from core import HttpLocust, Locust, TaskSet, task
File "/usr/local/lib/python3.4/site-packages/locust/core.py", line 106
  raise LocustError, LocustError("A task inside a Locust class' main TaskSet 
  (`%s.task_set` of type `%s`) seems to have called interrupt() or raised 
  an InterruptTaskSet exception. The interrupt() function is used to hand over execution
  to a parent TaskSet, and should never be called in the main TaskSet which a Locust
  class' task_set attribute points to." % (type(self).__name__, self.task_set.__name__)), sys.exc_info()[2]
                  ^
SyntaxError: invalid syntax

我很困惑......为什么它SyntaxError在异常字符串中调用“属性”这个词?

我真的不知道在这里尝试什么。我做了一个strace,结果基本上 100% 相同,所以没有额外的线索。

4

1 回答 1

1

好吧,根据官方 locust 文档 ( http://docs.locust.io/en/latest/installation.html#supported-python-versions ),它现在不兼容 Python 3.x。

支持的 Python 版本
Locust 需要 Python 2.6+。它目前与 Python 3.x 不兼容。

也许这就是问题所在?

于 2015-04-19T19:40:36.880 回答