问题描述
Python 3.5 使用pytest可能会遇到这个坑。
在使用Python 3.5,安装并使用nltk包的时候,出现了这个错误。
报错信息主要是:
NOTSET: "Final" = NotSetType.token # noqa: E305
详细的错误信息可能是这样的。
File "/root/.local/lib/python3.5/site-packages/pytest/__init__.py", line 3, in <module>
from . import collect
File "/root/.local/lib/python3.5/site-packages/pytest/collect.py", line 8, in <module>
from _pytest.deprecated import PYTEST_COLLECT_MODULE
File "/root/.local/lib/python3.5/site-packages/_pytest/deprecated.py", line 13, in <module>
from _pytest.warning_types import PytestDeprecationWarning
File "/root/.local/lib/python3.5/site-packages/_pytest/warning_types.py", line 8, in <module>
from _pytest.compat import final
File "/root/.local/lib/python3.5/site-packages/_pytest/compat.py", line 39
NOTSET: "Final" = NotSetType.token # noqa: E305
^
SyntaxError: invalid syntax
解决方案
查看pytest版本,如果版本过高,需要降级到6.1.2
版本。
pip install pytest==6.1.2
pip install importlib_metadata==2.1.1
解决方案是从Github的这个页面找到的。
Dropping python 3.5?