From: <mi...@st...> - 2003-01-23 10:25:04
|
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. |