zoukankan      html  css  js  c++  java
  • python安装ldap报错

        gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -DHAVE_SASL -DHAVE_TLS -DHAVE_LIBLDAP_R -DHAVE_LIBLDAP_R -DLDAPMODULE_VERSION=3.3.1 -DLDAPMODULE_AUTHOR=python-ldap project -DLDAPMODULE_LICENSE=Python style -IModules -I/usr/local/include/python3.7m -c Modules/LDAPObject.c -o build/temp.linux-x86_64-3.7/Modules/LDAPObject.o
        In file included from Modules/LDAPObject.c:3:0:
        Modules/common.h:15:18: fatal error: lber.h: No such file or directory
         #include <lber.h>
                          ^
        compilation terminated.
        error: command 'gcc' failed with exit status 1
        ----------------------------------------
    ERROR: Command errored out with exit status 1: /usr/local/bin/python3.7 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-hk0i6giv/python-ldap/setup.py'"'"'; __file__='"'"'/tmp/pip-install-hk0i6giv/python-ldap/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'
    '"'"', '"'"'
    '"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /tmp/pip-record-8h486ez3/install-record.txt --single-version-externally-managed --compile --install-headers /usr/local/include/python3.7m/python-ldap Check the logs for full command output.

    在执行pip install python-ldap时报错

    解决办法:

    先执行

    yum install openldap-devel

    然后再执行

    pip install python-ldap
    Installing collected packages: python-ldap
        Running setup.py install for python-ldap ... done
    Successfully installed python-ldap-3.3.1

    搞定!

  • 相关阅读:
    java的类加载机制
    tomcat jar包加载顺序
    重构 改善代码的既有设计
    ecilipse Javadoc文档注释
    常用HQL(Hibernate Query Language)查询
    在hibernate中查询单个对象的方法,get()、load()、
    hibernate -- HQL语句总结
    复杂的1秒--图解Google搜索技术
    作业-树状结构设计
    left join 和 left outer join 的区别
  • 原文地址:https://www.cnblogs.com/wangjian941118/p/13518515.html
Copyright © 2011-2022 走看看