Lib/ldap.py missing - strange error message ...

Michael Ströder michael at stroeder.com
Thu Jan 23 11:24:56 CET 2003


Elsner wrote:
> warning: build_py: file Lib/ldap.py (for module ldap) not found
> warning: build_py: file Lib/ldap/schema.py (for module ldap.schema) not 
> found

ldap and ldap.schema are both module packages (directories containing 
various sub-modules). The messages above are falsely produced by DistUtils.

Don't worry about it. Just try if it works after install:

$ python -c "import ldap,ldap.schema;print ldap.__version__"

Ciao, Michael.






More information about the python-ldap mailing list