Python Failed to install pycurl

  • 2020-12-13 19:00:26
  • OfStack

pycurl Centos installation


centos  The installation pycurl
yum install python-devel curl-devel
pip3 install pycurl

Mac(older version) Install pycurl


 To solve MacOS Appear after upgrade xcrun: error: invalid active developer path, missing xcrun The problem of 

xcode-select --install
 then 
dongchang-5:qqmusic baoshan$ pip3 install pycurl
Collecting pycurl
 Using cached pycurl-7.43.0.1.tar.gz
Building wheels for collected packages: pycurl
 Running setup.py bdist_wheel for pycurl ... done
 Stored in directory: /Users/baoshan/Library/Caches/pip/wheels/a5/5b/c8/f80900b09b49815e1f90dbae2f57e49b3f4c61071db40fb238
Successfully built pycurl
Installing collected packages: pycurl
Successfully installed pycurl-7.43.0.1

ImportError: pycurl: libcurl link-time ssl backend (openssl) is different from compile-time ssl backend (none/other)
 The solution 
# pip uninstall pycurl
# export PYCURL_SSL_LIBRARY=openssl
# pip install pycurl

dongchang-5:qqmusic baoshan$ pip3 install pycurl
Collecting pycurl
Installing collected packages: pycurl
Successfully installed pycurl-7.43.0.1

 The above reference is from: http://www.kxtry.com/archives/398

dongchang-5:include baoshan$ python3
Python 3.5.2 (v3.5.2:4def2a2901a5, Jun 26 2016, 10:47:25)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import pycurl
Traceback (most recent call last):
 File "<stdin>", line 1, in <module>
ImportError: pycurl: libcurl link-time ssl backend (openssl) is different from compile-time ssl backend (none/other)

 Reference solutions: https://www.jianshu.com/p/50b6771eb853

New version Mac installs pycurl


 But there is 1 A pit: in the higher version mac Not in the system environment variable openssl Of the header file 
 Because the new version Mac the openssl version  LibreSSL 2.2.7

pip3 uninstall pycurl#  Uninstall the library 
export PYCURL_SSL_LIBRARY=openssl
export LDFLAGS=-L/usr/local/opt/openssl/lib
export CPPFLAGS=-I/usr/local/opt/openssl/include# openssl The associated header file path 
pip3 install pycurl --compile --no-cache-dir #  Recompile installation 

 So that's it. 


dongchang-5:pycurl-7.43.0 baoshan$ python3
Python 3.5.2 (v3.5.2:4def2a2901a5, Jun 26 2016, 10:47:25)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import pycurl
>>>


 Reference: https://segmentfault.com/q/1010000012674778

Made more than 1 afternoon, finally found a solution...


Related articles: