顺序程序设计总结
Python安装pycurl失败的解决⽅法Centos安装pycurl
centos 安装pycurl
yum install python-devel curl-devel
pip3 install pycurl
Mac(⽼版本)安装pycurl
解决MacOS升级后出现xcrun: error: invalid active developer path, missing xcrun的问题
python安装教程macxcode-select --install
然后
dongchang-5:qqmusic baoshan$ pip3 install pycurl
Collecting pycurl
Using cached pycurl-7.43.0.
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)
解决办法
# 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
怎么安装access2016上述参考⾃:www.kxtry/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)
参考解决⽅案:www.jianshu/p/50b6771eb853
jne指令
新版本Mac安装pycurl
it培训招生
但是这⾥有⼀个坑:在⾼版本的mac系统环境变量⾥是不到openssl的头⽂件的
因为新版本Mac的openssl版本 LibreSSL 2.2.7
pip3 uninstall pycurl# 卸载库
export PYCURL_SSL_LIBRARY=openssl
export LDFLAGS=-L/usr/local/opt/openssl/lib
export CPPFLAGS=-I/usr/local/opt/openssl/include# openssl相关头⽂件路径
pip3 install pycurl --compile --no-cache-dir # 重新编译安装
⾄此终于搞定。
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
>>>
参考:segmentfault/q/1010000012674778
搞了⼀个多下午,终于到解决⽅法。。。
源代码软件下载以上这篇Python安装pycurl失败的解决⽅法就是⼩编分享给⼤家的全部内容了,希望能给⼤家⼀个参考,也希望⼤家多多⽀持。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。