安装 pip install gearman 时出现 Python 3.6 错误
Posted
技术标签:
【中文标题】安装 pip install gearman 时出现 Python 3.6 错误【英文标题】:Python 3.6 Error when installing pip install gearman 【发布时间】:2017-12-30 17:43:51 【问题描述】:我一直在尝试在 python 3.6 上安装 gearman,但出现此错误:
$ pip install gearman
Collecting gearman
Using cached gearman-2.0.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-xmf1cqe7/gearman/setup.py", line 5, in <module>
from gearman import __version__ as version
File "/tmp/pip-build-xmf1cqe7/gearman/gearman/__init__.py", line 7, in <module>
from gearman.admin_client import GearmanAdminClient
File "/tmp/pip-build-xmf1cqe7/gearman/gearman/admin_client.py", line 4, in <module>
from gearman import util
File "/tmp/pip-build-xmf1cqe7/gearman/gearman/util.py", line 62
except select_lib.error, exc:
^
SyntaxError: invalid syntax
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-xmf1cqe7/gearman/
我使用的是 Ubuntu 16.04 LTS
pip -V -> [my_project_folder]/venv/lib/python3.6/site-packages (python 3.6) 中的 pip 9.0.1
python --version -> Python 3.6.2
我该如何解决这个问题?
【问题讨论】:
【参考方案1】:gearman 包不支持 Python 3。根据他们的setup.py,仅支持 python 2.4-2.7。有一个开放的pull request 来添加对 python 3 的支持,但它已经有一年没有改变了。我相信Yelp!可能已经停止支持这个库。
【讨论】:
【参考方案2】:你使用python3和python3
改为:the raise syntax no longer accepts comma-separated arguments.
gearman
不是Python 3版本,可以查看链接https://pypi.python.org/pypi/gearman
【讨论】:
以上是关于安装 pip install gearman 时出现 Python 3.6 错误的主要内容,如果未能解决你的问题,请参考以下文章
Win10上Python3通过pip install Twisted安装时出现UnicodeDecodeError
尝试使用“pip install psycopg2”在 Mac 上安装 psycopg2 时出现权限错误
pip install virtualenv 和 virtualenvwrapper 时出现不支持的语言环境设置错误
(ubuntu) pip install scandir 时出现错误 fatal error: Python.h: No such file or directory