执行以下命令时:
sudo pip install python-ldap
我得到这个错误:
在Modules/LDAPObject.c:9包含的文件中: Modules/errors.h:8:致命错误:lber.h:没有这样的文件或目录
有什么解决办法吗?
执行以下命令时:
sudo pip install python-ldap
我得到这个错误:
在Modules/LDAPObject.c:9包含的文件中: Modules/errors.h:8:致命错误:lber.h:没有这样的文件或目录
有什么解决办法吗?
当前回答
要用pip成功安装python-ldap,需要以下开发库(包名取自ubuntu环境):
sudo apt-get install -y python-dev libldap2-dev libsasl2-dev libssl-dev
其他回答
对于使用alphine linux的用户, Apk添加openldap-dev
截至2021年12月,ldap库出现了一个奇怪的问题(至少在arch/manjaro中)。
在安装python-ldap(在'Building wheel for python-ldap')时,我收到消息'ERROR: Failed Building wheel for python-ldap':
/usr/bin/ld: cannot find -lldap_r
collect2: error: ld returned 1 exit status
error: command '/usr/bin/gcc' failed with exit code 1
这里提供了一个解决方案:https://github.com/python-ldap/python-ldap/issues/432#issuecomment-974799221
我引用:
作为解决方案,创建文件/usr/lib64/libldap_r.关于内容 输入(libldap。)。这种方法适用于所有使用GNU的系统 ld-compatible链接器。 # cat > /usr/lib64/libldap_r.so << EOF 输入(libldap。) EOF
修正由于安装python-ldap依赖关系导致的错误:Windows 7/10
下载WHL文件
http://www.lfd.uci.edu/ gohlke pythonlibs / # python-ldap。
Python 3.6套装
python_ldap-3.2.0-cp36-cp36m-win_amd64.whl
将文件部署到:
c:\python36\Scripts\
使用
python -m pip install python_ldap-3.2.0-cp36-cp36m-win_amd64.whl
对FreeBSD 13.1的一个hack答案(是的,我知道这是最佳实践的深层南方,但我只是需要一个快速修复):
pkg install openldap24-client
cd /usr/local/include/python3.9
ln -s ../<all of the below> .
lber.h
lber_types.h
ldap.h
ldap_cdefs.h
ldap_features.h
ldap_schema.h
ldap_utf8.h
openldap.h
sasl
pip install python-ldap
在Debian/Ubuntu上安装二进制依赖的Python包[1]的通用解决方案:
sudo apt-get build-dep python-ldap
# installs system dependencies (but not the package itself)
pew workon my_virtualenv # enter your virtualenv
pip install python-ldap
你必须在Ubuntu和PyPI上检查你的Python包的名称。在这种情况下,它们是一样的。
显然,如果Python包不在Ubuntu回购中,则无法工作。
当我尝试在Ubuntu上安装matplotlib时,我学会了这个技巧。