我需要安装一个模块txsckjs
,但是当我运行pip install txsockjs
时,它显示了一些错误,我不知道发生了什么。
错误如下:
(venv)lk@linux-7hhe:~/MyImprove/project> pip install txsockjs
Collecting txsockjs
Using cached txsockjs-1.2.2.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/tmp/pip-build-5pxhyr0u/txsockjs/setup.py", line 73
except Exception, e:
^
SyntaxError: invalid syntax
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-5pxhyr0u/txsockjs/
最佳答案
您使用的Python版本可能与给定的模块不兼容。
我拥有Python 3.5.2,并能够解决您的错误。我认为它应该可以在Python 2上工作。