无法通过pip安装python-ldap

时间:2015-04-11 21:09:19

标签: python python-3.x openldap

我无法通过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

有任何想法如何解决这个问题?

2 个答案:

答案 0 :(得分:4)

您的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/

答案 1 :(得分:3)

您可以安装为python3

实现的python-ldap
pip install python3-ldap