Exception: `curl-config' not found -- please install the libcurl development files

来源:互联网 发布:如何将一个矩阵对角化 编辑:程序博客网 时间:2024/06/07 01:38
转自:https://gist.github.com/lxneng/1031014
(env)~/env pip install pycurl
Downloading/unpacking pycurl
Downloading pycurl-7.19.0.tar.gz (71Kb): 71Kb downloaded
Running setup.py egg_info for package pycurl
sh: curl-config: not found
Traceback (most recent call last):
File "<string>", line 14, in <module>
File "/home/eric/env/build/pycurl/setup.py", line 90, in <module>
raise Exception, ("`%s' not found -- please install the libcurl development files" % CURL_CONFIG)
Exception: `curl-config' not found -- please install the libcurl development files
Complete output from command python setup.py egg_info:
sh: curl-config: not found
 
Traceback (most recent call last):
 
File "<string>", line 14, in <module>
 
File "/home/eric/env/build/pycurl/setup.py", line 90, in <module>
 
raise Exception, ("`%s' not found -- please install the libcurl development files" % CURL_CONFIG)
 
Exception: `curl-config' not found -- please install the libcurl development files
 
----------------------------------------
Command python setup.py egg_info failed with error code 1
Storing complete log in /home/eric/.pip/pip.log
 
(env)~/env apt-cache depends python-pycurl
python-pycurl
Depends: libc6
Depends: libcurl3-gnutls
Depends: libgcrypt11
Depends: libgnutls26
Depends: libgssapi-krb5-2
Depends: libidn11
Depends: libldap-2.4-2
Depends: zlib1g
Depends: python
Depends: python
Depends: python-support
Suggests: libcurl4-gnutls-dev
Suggests: python-pycurl-dbg
Conflicts: <python2.3-pycurl>
Conflicts: <python2.4-pycurl>
Replaces: <python2.3-pycurl>
Replaces: <python2.4-pycurl>
(env)~/env
(env)~/env sudo apt-get install libcurl4-gnutls-dev
 
then ``pip install pycurl``
原创粉丝点击