我无法使用virtualenv和pip安装python-ldap。当我运行命令时:
pip install python-ldap
:
Cleaning up...
Command /opt/odoo/venv/bin/python -c "import setuptools, tokenize;__file__='/tmp/pip-1xwfhM-build/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-pjbP3I-record/install-record.txt --single-version-externally-managed --compile --install-headers /opt/odoo/venv/include/site/python2.7 failed with error code 1 in /tmp/pip-1xwfhM-build
Traceback (most recent call last):
File "/opt/odoo/venv/bin/pip", line 11, in <module>
sys.exit(main())
File "/opt/odoo/venv/lib/python2.7/site-packages/pip/__init__.py", line 185, in main
return command.main(cmd_args)
File "/opt/odoo/venv/lib/python2.7/site-packages/pip/basecommand.py", line 161, in main
text = '\n'.join(complete_log)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 41: ordinal not in range(128)
我尝试从这里下载最新版本:https://pypi.python.org/pypi/python-ldap#downloads,但似乎版本与它给出相同的错误。我在这里遗漏了什么或这个版本被窃听了吗?
更新 我想我也应该包含这个错误信息。这是在那之前:
error: command 'gcc' failed with exit status 1
答案 0 :(得分:2)
在RHEL / Centos中,我需要安装openldap-devel
。
答案 1 :(得分:1)
似乎我错过了一些包裹。这解决了这个问题:
sudo apt-get install libsasl2-dev python-dev libldap2-dev libssl-dev
在此处找到:How do I install python-ldap in a virtualenv on Ubuntu?。
此安装需要在虚拟环境之外完成,而不是在虚拟环境中完成。