我已经在我的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('\r\n', '\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/
答案 0 :(得分:0)
您必须为要使用的每个python版本单独安装一个模块。如果您将其安装在python 2.7上,它将不会安装在python 3.6上。即使将其安装在3.6上,也不会安装在3.7上。您必须为要使用它的每个python版本分别安装该模块。
阅读this tutorial on pip troubleshooting和installing modules in Python 3可能会有所帮助。