当前位置: 首页 > 工具软件 > PycURL > 使用案例 >

ubuntu 搭建 pycurl

姚乐家
2023-12-01


问题:

在使用pip install pycurl是报curl_config no found错误

解决:

sudo apt-get install libcurl4-gnutls-dev

pip install pycurl


参考:http://zhaoq.blog.51cto.com/1374836/1546259


Python中国社区   »   Python

ubuntu安装pycurl

灵魂码者 • 2 年前 • 3162 次点击  

安装 pycurl

https://pypi.python.org/pypi/pycurl

https://pypi.python.org/packages/source/p/pycurl/pycurl-7.19.5.tar.gz#md5=47b4eac84118e2606658122104e62072

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>", 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

查询依赖

(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

参考:http://www.python88.com/topic/584/

参考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

 类似资料: