1

I have a question, is django-auth-ldap available for python 3.4? ldap package seems to be available but this other one either I cannot install or is not available yet. A hack anyone?

1 Answers1

0

Yes, but not via pip install python-ldap.

As per https://pythonhosted.org/django-auth-ldap/

Support for Python >= 3.3 is considered experimental at this time. Since python-ldap doesn’t support Python 3 yet, you have to install a fork:

$ pip install git+https://github.com/rbarrois/python-ldap.git@py3

This has been working fine for me on Python 3.4.

MrDBA
  • 420
  • 1
  • 6
  • 8