问题:
在使用pip install pycurl是报curl_config no found错误
解决:
sudo apt-get install libcurl4-gnutls-dev
pip install pycurl
参考:http://www.jb51.cc/article/p-dbocqwgt-ed.html
安装 pycurl
https://pypi.python.org/pypi/pycurl
python setup.py install 时发现错误:
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>",in <module> File "/home/eric/env/build/pycurl/setup.py",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
查询依赖
(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>
安装 libcurl4-gnutls-dev
sudo apt-get install libcurl4-gnutls-dev
参考https://www.baidu.com/s?wd=ubuntu%E6%90%AD%E5%BB%BA%20pycurl&f=12&rsp=0&oq=ubantu%E6%90%AD%E5%BB%BA%20pycurl&ie=utf-8&rsv_pq=cae2392c000117b2&rsv_t=287dlRiW6Eapq3YIxFYFQZIMVeAv4J6G9%2B6RrKVqnpGGmuhfX1qXi4%2Bzr1A&rqlang=cn
原文链接:https://www.f2er.com/ubuntu/356523.html