我正在尝试使用easy_install安装pyCurl,但是我收到以下错误
In file included from src/docstrings.c:4:
src/pycurl.h:170:13: fatal error: 'openssl/crypto.h' file not found
include <openssl/crypto.h>
1 error generated.
error: Setup script exited with error: command '/usr/bin/clang' failed with exit status 1
openssl
已使用brew
进行安装,其版本为LibreSSL 2.2.7.
我已使用xcode-select --install
安装了xcode工具,但似乎没有解决问题。
使用pip
进行安装时,我也遇到了同样的问题。
答案 0 :(得分:13)
这可能会解决您的问题。
$export PYCURL_SSL_LIBRARY=openssl
$export LDFLAGS="-L/usr/local/opt/openssl/lib"
$export CPPFLAGS="-I/usr/local/opt/openssl/include"
现在你可以easy_install或者如果你正在使用pip,那么应该是命令。
$ pip install --no-cache-dir --compile --ignore-installed --install-option="--with-openssl" pycurl