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 pycurl

再执行

pip install pycurl

即解决。

时间: 2024-12-23 12:58:18

20170319 - pycurl 提示 libcurl link-time version is older than compile-time version的相关文章

LINK : fatal error LNK1117: syntax error in option 'VERSION:1.6.5'

今天在用vs2015编译ogre 1.6.5的代码时发生连接错误 LINK : fatal error LNK1117: syntax error in option 'VERSION:1.6.5'. 解决:On the Settings (Project > Settings > Linker) removing the "Version" entry. 没有深入搞懂为什么,先Mark下. 参考: http://stackoverflow.com/questions/20

Android错误之--Warning:Gradle version 2.10 is required. Current version is 2.8.

导入高德地图demo,出现如下错误提示: Warning:Gradle version 2.10 is required. Current version is 2.8. If using the gradle wrapper, try editing the distributionUrl in C:\Users\Administrator\Desktop\android_studio\AMapLocationDemo\gradle\wrapper\gradle-wrapper.propert

Matlab 之 Warning: Variable 'a' cannot be saved to a MAT-file whose version is older than 7.3.

save mat文件的时候出现以下错误: matlab错误提示: Warning: Variable 'a' cannot be saved to a MAT-file whose version is older than 7.3. To save this variable, use the -v7.3 switch. Skipping... 解决办法: 1.打开matlab,file/preferences,general选项卡-MAT-Files,选择第一个. 2.save -v7.3 

svn:revert to this version 和 revert changes from this version的区别

假设我们有许多个版本,版本号分别是1-10 如果我们在7这里选择revert to this version那么7之后的8,9,10的操作都会被消除 如果在7选择revert changes from this version那么7版本的修改将会被消除 如果同时选择7,8 revert changes from this version那么7和8两个版本的所做的修改都会被 update to revision和revert to revision很像,都会融合你本地未提交的修改.它们2个的区别是

bug--java访问hdfs (Server IPC version 9 cannot communicate with client version 4 错误)

1. 今天想做一个hdfs的java工具类,但是在连接hdfs的时候,报如下错误: Exception in thread "main" org.apache.hadoop.ipc.RemoteException: Server IPC version 9 cannot communicate with client version 4 at org.apache.hadoop.ipc.Client.call(Client.java:1113) at org.apache.hadoop

Android Error:(1, 0) Gradle version 2.2 is required. Current version is 3.4.1.

我们在使用Android Studio的时候新建项目没什么问题的,但是当我们下载一份Github上的项目导入进去的时候却没法正常使用,其原因主要是gradle配置问题.而由于gradle这个玩意儿版本更新太快,android Studio每个版本也不一样.比如2.3版本使用gradle的版本是3.3,而2.4版本使用的是3.4.1.那么这个时候会出现什么问题呢?当你使用Android Studio 2.4版本导入一个2.3版本的项目的话就会出现需要修改gradle的版本.有时候Android S

出现Warning:Gradle version 2.10 is required. Current version is 2.8.

Warning:Gradle version 2.10 is required. Current version is 2.8. If using the gradle wrapper, try editing the distributionUrl in F:\work\qxueyou\gradle\wrapper\gradle-wrapper.properties to gradle-2.10-all.zip 本人在android程序开发过程中遇到了这个错误,如下下图: 上面说我的项目使用的

解决:Server IPC version 9 cannot communicate with client version 4

使用idea的maven项目运行mapreduce程序Server IPC version 9 cannot communicate with client version 4 原因: Java初始化hdfs client时出现的,原因是maven依赖的版本和hdfs的版本不一致 maven仓库中的hadoop-core最高只有1.2.1版本, 不能加这个配置, 使用hadoop-common + hadoop-hdfs + hadoop-client的2.7.1版本即可 我的pom文件: <?

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

up votedown 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". 正解