When I run the following command:

sudo pip install python-ldap

I get this error:

In file included from Modules/LDAPObject.c:9:

Modules/errors.h:8: fatal error: lber.h: No such file or directory

Any ideas how to fix this?

link|improve this question

67% accept rate
feedback

2 Answers

up vote 6 down vote accepted

The website says that python-ldap is based on OpenLDAP, so you need to have the development files (headers) in order to compile the Python module. If you're on Ubuntu, the package is called libldap2-dev.

link|improve this answer
Thanks for that. It's got further it's now failing with sasl.h no such file or directory – VacuumTube Jan 22 '11 at 14:57
3  
@VacuumTube: Missing headers are almost always a sign for missing -dev packages (sometimes also named -devel). Just do apt-cache search sasl | grep dev and you'll probably find the right package - I would guess it's libsasl2-dev. – AndiDog Jan 22 '11 at 15:02
You guessed right sir. Thank you. – VacuumTube Jan 22 '11 at 15:06
feedback

To install python-ldap successfully with pip, following development libraries are needed (package names taken from ubuntu environment):

python-dev libldap2-dev libsasl2-dev libssl-dev

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.