欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Python安装pycurl失败的解决方法

程序员文章站 2023-08-26 20:11:05
centos安装pycurl centos 安装pycurl yum install python-devel curl-devel pip3 install...

centos安装pycurl

centos 安装pycurl
yum install python-devel curl-devel
pip3 install pycurl

mac(老版本)安装pycurl

解决macos升级后出现xcrun: error: invalid active developer path, missing xcrun的问题

xcode-select --install
然后
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)
解决办法
# 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

上述参考自: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)

参考解决方案:https://www.jianshu.com/p/50b6771eb853

新版本mac安装pycurl

但是这里有一个坑:在高版本的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
>>>


参考:https://segmentfault.com/q/1010000012674778

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

以上这篇python安装pycurl失败的解决方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。