gpt4 book ai didi

python - 无法通过 pip 安装 python-ldap

转载 作者:太空狗 更新时间:2023-10-30 02:19:29 27 4
gpt4 key购买 nike

我无法通过 pip 安装 python-ldap,出现以下错误:

$ sudo pip3.4 install python-ldap
Downloading/unpacking python-ldap
Downloading python-ldap-2.4.19.tar.gz (138kB): 138kB downloaded
Running setup.py (path:/tmp/pip_build_root/python-ldap/setup.py) egg_info for package python-ldap
Traceback (most recent call last):
File "<string>", line 17, in <module>
File "/tmp/pip_build_root/python-ldap/setup.py", line 53
print name + ': ' + cfg.get('_ldap', name)
^
SyntaxError: invalid syntax
Complete output from command python setup.py egg_info:
Traceback (most recent call last):

File "<string>", line 17, in <module>

File "/tmp/pip_build_root/python-ldap/setup.py", line 53

print name + ': ' + cfg.get('_ldap', name)

^

SyntaxError: invalid syntax

----------------------------------------
Cleaning up...
Command python setup.py egg_info failed with error code 1 in /tmp/pip_build_root/python-ldap
Storing debug log for failure in /home/nima/.pip/pip.log

有什么解决办法吗?

最佳答案

您的 python-ldap 似乎是在 Python-2.X 中实现的,但您使用的是 Python-3.X ( Print Is A Function in python 3 )。因此,您需要安装支持 Python-3.X 的该库的较新版本,或者不推荐在 python-2.X 中安装该库。

您可以使用以下命令为 Python-3.X 安装正确的版本:

# if pip3 is the default pip alias for python-3
pip3 install python3-ldap

# otherwise
pip install python3-ldap

这里还有 PiPy 包的链接以获取更多信息。 https://pypi.python.org/pypi/python3-ldap/0.9.8.4/

关于python - 无法通过 pip 安装 python-ldap,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29583070/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com