pycurl对libcurl版本有要求,需先升级curl
下载curl
wget http://curl.haxx.se/download/curl-7.21.3.tar.gz
tar xzvf curl-7.21.3.tar.gz
cd curl-7.21.3
./configure #假若指定路径后面安装pycurl也同样需要指定curl-config路径,指到文件
make
make install
下载pycurl
wget http://pycurl.sourceforge.net/download/pycurl-7.19.0.tar.gz
tar xzvf pycurl-7.19.0.tar.gz
cd pycurl-7.19.0
python setup.py install
一切顺利,一个错误都没有提示,但运行python之后,出了问题
import pycurl
提示如下错误
Traceback (most recent call last):
File “”, line 1, in ?
ImportError: No module named pycurl
检查一下,原来是pycurl自己假定的curl路径不对。
需要给pycurl指定curl-config 路径,如下所示:
python setup.py install –curl-config=/usr/local/bin/curl-config
相关报错:
Traceback (most recent call last):
File "", line 1, in
ImportError: libcurl.so.4: cannot open shared object file: No such file or directory
或者
Traceback (most recent call last):
File "", line 1, in
ImportError: pycurl: libcurl link-time version (7.19.7) is older than compile-time version (7.37.0)
提示错误,解决方法:
export LD_LIBRARY_PATH=/usr/local/lib
or
export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
分享到:
相关推荐
然而,当你尝试导入`cv2`时,可能会遇到`ImportError: DLL load fail:找不到指定模块`这样的错误。这个错误通常表明你的系统缺少一个或多个动态链接库(DLL)文件,这些文件是OpenCV运行所必需的。 OpenCV是用C++...
ImportError: No module named fcntl #fcntl.py #ImportError
然而,当你尝试运行含有此语句的Python脚本时,出现"ImportError: DLL load failed while import cv2: 找不到指定的模块。"的错误,这意味着系统无法找到或加载必要的动态链接库(DLL)文件,这是OpenCV库运行所必需...
ubuntu系统中import h5py, ImportError: No module named h5py的解决方法
解决官方版CPU不支持AVX的ImportError: DLL load failed: A dynamic link library (DLL) initialization routine failed.采用SSE2编译版本
问题描述 在使用paddlepaddle进行深度学习过程中需要导入Ploter from paddle.v2.plot import Ploter 但出现问题: Traceback (most recent call last): File D:/xxx.py, line 13, in from paddle.v2.plot import...
解决Python安装模块出错 ImportError: No module named setuptools-附件资源
python3.8在import sqlite3时报错误:ImportError: No module named '_sqlite3'。
在使用深度学习框架如百度飞桨(PaddlePaddle)时,可能会遇到导入错误ImportError,具体表现为"Could not find 'cudnn64_7.dll'"。这个错误通常是由于CUDA(NVIDIA的Compute Unified Device Architecture)环境配置...
将dll 下面的dll 文件拷贝到下面目录,windows server 系统缺少动态库 具体位置根据系统版本,我的cv2位置在此, C:\Users\Administrator\AppData\Local\Programs\Python\Python37\lib\site-packages\cv2
中文字体文件
在Python编程中,遇到"ImportError: DLL load failed: 找不到指定的模块"这样的错误,通常意味着在尝试导入特定的Python模块时,系统无法找到该模块依赖的一些动态链接库(DLL)文件。在这个问题中,错误是针对...
在Python3中使用HTMLTestRunner.py时,可能会遇到一个常见的问题,即报出"ImportError: No module named 'StringIO'"的错误。这个问题的出现,主要是因为在Python3中,StringIO模块已经被io模块中的StringIO类所取代...
在Python编程过程中,可能会遇到各种导入模块时的错误,其中之一就是"ImportError: No module named fcntl"。这个错误提示表明Python无法找到名为`fcntl`的模块,这通常是由于系统中缺少该模块或者模块的安装路径...
2022年景德镇地区投资主管职位薪酬调查报告.pdf 报告概述: 本报告旨在调查和分析2022年景德镇地区投资主管职位的薪酬情况,旨在为投资主管和人力资源管理者提供有价值的参考依据。报告涵盖了景德镇地区不同类型的...
numpy+matplotlib+scipy+部分问题的解决方法; 错误:six 1.3 or later is required; you have 1.2.0; 错误:ImportError: matplotlib requires pyparsing; 安装dateutil :
ImportError: DLL load failed: 找不到指定的模块。 … During handling of the above exception, another exception occurred: Traceback (most recent call last): File “******”, line 1, in import ...
在使用Visual Studio Code (VSCode) 运行Python程序时,有时可能会遇到“ImportError: Missing required dependencies ['numpy']”这样的错误。这个错误通常意味着在尝试导入numpy库时,系统无法找到该库,导致程序...