Python安装时出现错误导致无法安装
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python安装时出现错误导致无法安装相关的知识,希望对你有一定的参考价值。
说我系统没有改进是什么鬼 现在用的W8.1
难道要重装系统么
安装过程中弹出两个错误窗口 代码是2502 2503 然后就是这个界面
lz小白完全不懂这是搞什么啊 求大神解救 在线等
你可以去看看这个http://jingyan.baidu.com/article/a501d80cec07daec630f5e18.html 参考技术A
1、Python这个东西04的win7上装不了。08的32位的能装,64位的也装不了。
2、Python中设置标准错了,Python中设置标准为无缓冲有以下三种方法:
(1) 对python加-u参数
(2) 加 PYTHONUNBUFFERED环境变量
(3) sys.stdout = os.fdopen(sys.stdout.fileno(), 'w', 0)
我们采用第三种方法,添加 sys.stdout = os.fdopen(sys.stdout.fileno(), 'w', 0)到pyth.py中。再次运行client就可以啦。
根据具体问题类型,进行步骤拆解/原因原理分析/内容拓展等。
具体步骤如下:/导致这种情况的原因主要是……
安装 pip install gearman 时出现 Python 3.6 错误
【中文标题】安装 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
【讨论】:
以上是关于Python安装时出现错误导致无法安装的主要内容,如果未能解决你的问题,请参考以下文章
当 EB 环境为 python 3.6 时,使用 python 2.7 安装要求时出现 AWS 错误