我已经在我的 centOS 机器上安装了 python-ldap
和flask-ldap
。
当我尝试导入LDAP时,Python 2.x运行良好。 但是在Python 3.4版本中,它返回以下异常:
ImportError: No module named 'ldap'
我需要安装任何其他库才能在 Python 3.4 版本中使用 LDAP?
任何帮助将不胜感激。
谢谢。
编辑:
我正在尝试通过以下命令在 Python 3.4 版本中安装库:
python3.4 -m pip install python-ldap
python3.4 -m pip install Flask-LDAP
但是我遇到了以下异常:
Command "/usr/bin/python3.4 -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-qvn41t9w/python-ldap/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('rn', 'n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-record-zev4yfdk/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-install-qvn41t9w/python-ldap/
您必须为打算使用的每个 python 版本单独安装一个模块。如果你在python 2.7上安装了它,它将不会安装在python 3.6上。即使您将其安装在 3.6 上,也不会安装在 3.7 上。您必须为打算使用它的每个 python 版本单独安装该模块。
阅读本教程可能会有所帮助 pip 故障排除和在 Python 3 中安装模块。
通过确保节点首先订阅存储库来解决它。然后搜索可用的模块: yum 搜索 python3 |grep ldap安装首选模块:yum install -y python3-ldap.x86_64注意:这是在 RHEL8 上