Fatal Python error: pycurl: libcurl link-time version is older than compile-time version


up vote
down vote


I have found that VMWare Toolkit caused this issue on CentOS VMs.

vi /etc/ld.so.conf.d/vmware-tools-libraries.conf

and add the following two lines at the top (assuming you‘re 64-bit):

/lib64 /usr/lib64

Save, and "ldconfig".

正解

时间: 2024-10-27 19:12:22

Fatal Python error: pycurl: libcurl link-time version is older than compile-time version的相关文章

python error: curl: (1) Protocol "'https" not supported or disabled in libcurl

python 调用curl访问一个网页时,出现error: curl: (1) Protocol "'https" not supported or disabled in libcurl 控制台直接curl xxx是ok的 output = subprocess.check_output(["curl","https://stackoverflow.com/questions/6884669/curl-1-protocol-https-not-suppo

20170319 - pycurl 提示 libcurl link-time version is older than compile-time version

使用 conda update anaconda 升级后,运行程序得到如下提示: ImportError: pycurl: libcurl link-time version (7.45.0) is older than compile-time version (7.52.1) 网上查解决办法,如下: pip uninstall pycurl export PYCURL_SSL_LIBRARY=openssl pip install pycurl 实际中,执行两次 pip uninstall

转!Python安装pycurl失败,及解决办

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的问题 xcode-select --install 然后 dongchang-5:qqmusic bao

x0vncserver Fatal server error: no screens found

I make a connection through SSH and  then I type: # x0vncserver --PasswordFile=/home/hello/.vnc/passwd x0vncserver: unable to open display "" ~ImageCleanup called the reason is : x0vncserver is an X-Windows CLIENT program. Where is the X-Windows

Python error: Unable to find vcvarsall.bat

请参考阅读博文<Python error: Unable to find vcvarsall.bat> 我用的该文章中的方案二解决的: 前提:win7系统     Python2.7 ①下载安装VS2010  http://pan.baidu.com/s/1skZLtId  或   http://www.xpgod.com/soft/6637.html ②通过修改Python的源代码进行修改:打开"<python安装目录>\Lib\distutils\msvc9compi

Autel MaxiDAS DS708 Fatal Application Error illegal operation

I get one Original Autel MaxiDAS® DS708 Update Service, after complete update, I got a message "Fatal Application Error", reading: Application AutoRun.exe has performed an illegal operation and will be shut down. If the problem persists, contact

[Nuget] - &quot;Runtime error: Could not load file or assembly &#39;System.Web.WebPages.Razor, Version=3.0.0.0&#39;&quot; 问题之解决

环境 项目中使用了 System.Web.WebPages.Razor, Version=3.0.0.0,Nuget 还原缺失包后自动更新至 Version=3.2.5.0,编译成功,运行失败. 错误 "/"应用程序中的服务器错误.未能加载文件或程序集"System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"或它的某一个依赖项.系统找不到

解决configure: error: Could not link against !

问题描述:在./configure时出现error: Could not link against ! 解决方法:来自 http://stackoverflow.com/questions/9132335/configure-error-could-not-link-against-boost-system对于64位机:./configure --with-boost-libdir=/usr/lib/x86_64-linux-gnu对于32位机:./configure --with-boost-

Python error: ascii’/&#39;utf-8′ codec can’t decode byte 0xb8 in position 50: ord

字符串使用了费ascii编码的字符,也就是它代表的16进制的编码超过127. 解决这个问题可以使用下面的方法解决,其实就是设置默认的编码.python 2.x的默认编码是ascii,如果改为utf-8,就可以了 如果有中文还是不行,可以使用gbk编码方式,具体使用如下: import sys reload( sys ) sys.setdefaultencoding('gbk') Python error: ascii'/'utf-8′ codec can't decode byte 0xb8 i