博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python安装pycurl失败,及解决办法
阅读量:6954 次
发布时间:2019-06-27

本文共 2109 字,大约阅读时间需要 7 分钟。

 

Centos安装pycurl

centos 安装pycurlyum install python-devel curl-develpip3 install pycurl

 

Mac(老版本)安装pycurl

解决MacOS升级后出现xcrun: error: invalid active developer path, missing xcrun的问题xcode-select --install然后dongchang-5:qqmusic baoshan$ pip3 install pycurlCollecting pycurl  Using cached pycurl-7.43.0.1.tar.gzBuilding 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/f80900b09b49815e1f90dbae2f57e49b3f4c61071db40fb238Successfully built pycurlInstalling collected packages: pycurlSuccessfully installed pycurl-7.43.0.1ImportError: 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 pycurldongchang-5:qqmusic baoshan$ pip3 install pycurlCollecting pycurlInstalling collected packages: pycurlSuccessfully installed pycurl-7.43.0.1上述参考自:http://www.kxtry.com/archives/398dongchang-5:include baoshan$ python3Python 3.5.2 (v3.5.2:4def2a2901a5, Jun 26 2016, 10:47:25)[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwinType "help", "copyright", "credits" or "license" for more information.>>> import pycurlTraceback (most recent call last):  File "
", line 1, in
ImportError: pycurl: libcurl link-time ssl backend (openssl) is different from compile-time ssl backend (none/other)参考解决方案:https://www.jianshu.com/p/50b6771eb853

 

新版本Mac安装pycurl

但是这里有一个坑:在高版本的mac系统环境变量里是找不到openssl的头文件的 因为新版本Mac的openssl版本 LibreSSL 2.2.7 pip3 uninstall pycurl# 卸载库export PYCURL_SSL_LIBRARY=opensslexport LDFLAGS=-L/usr/local/opt/openssl/libexport CPPFLAGS=-I/usr/local/opt/openssl/include# openssl相关头文件路径pip3 install pycurl --compile --no-cache-dir # 重新编译安装至此终于搞定。
dongchang-5:pycurl-7.43.0 baoshan$ python3Python 3.5.2 (v3.5.2:4def2a2901a5, Jun 26 2016, 10:47:25)[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwinType "help", "copyright", "credits" or "license" for more information.>>> import pycurl>>>
 
参考:https://segmentfault.com/q/1010000012674778

 

搞了一个多下午,终于找到解决办法。。。

 

转载地址:http://hnvil.baihongyu.com/

你可能感兴趣的文章
【CodeForces 699D】Fix a Tree
查看>>
V神:zk-snarks技术可以帮助以太坊扩容,有望达到500笔交易/秒
查看>>
你好RunLooooooop
查看>>
关于Web开发中的“程序=数据结构+算法”
查看>>
说说资源加载的问题(Class的getResource方法)
查看>>
代码片段
查看>>
【跃迁之路】【738天】程序员高效学习方法论探索系列(实验阶段495-2019.2.28)...
查看>>
C++回声服务器_6-多进程pipe版本服务器
查看>>
面试官问你“有什么问题问我吗?”,你该如何回答?
查看>>
Fabric架构演变之路
查看>>
android课程表控件、悬浮窗、Todo应用、MVP框架、Kotlin完整项目源码
查看>>
go-micro 框架源码剖析 之 函数选项模式
查看>>
使用scrapy抓取Youtube播放列表信息
查看>>
python文件打包利器之pyinstaller的使用
查看>>
盒子边界(根据理解和测试记录,在概念上可能有描述错误,推荐补充)
查看>>
2019年到了,送你一份最新Java架构图谱(性能优化+微服务+……)
查看>>
react16生命周期方法
查看>>
Java™ 教程(Lambda表达式)
查看>>
wepy根据不同打包命令配置不同的全局变量
查看>>
leetcode 简化路径
查看>>