本文主要是介绍[python] pycurl包安装, libcurl link-time version (7.58.0) is older than compile-time version (7.68.0),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
python3.7下安装Pycurl
报错:
libcurl link-time version (7.58.0) is older than compile-time version (7.68.0)
解决方案
尝试了网上所有的解决办法都失败了
最终用以下方法解决的:
成功方法
- 在系统环境下(sh-4.4$)用 sudo apt-get install libpython3.7-dev 安装符合python3.7的dev
- 在系统环境下(sh-4.4$)用 conda install pycurl 安装pycurl
- 在个人环境中用 conda install pycurl 安装pycurl ((taac2021-structuring) sh-4.4$)
detail
第一次安装Pycrul 是在个人环境下((taac2021-structuring) sh-4.4$)用 sudo apt-get install libpython3.7-dev 安装符合python3.7的dev,然后完成上述第二步第三步安装成功的。
后来环境重建,用了上述成功方法。
附录——失败方法
rm -f /usr/lib64/libcurl.so.4* sudo ln -s /usr/local/lib/libcurl.so.4
export PYCURL_SSL_LIBRARY=openssl
(env)$ pip uninstall pycurl(env)$ pip install --upgrade pip(env)$ export LDFLAGS=-L/usr/local/opt/openssl/lib(env)$ export CPPFLAGS=-I/usr/local/opt/openssl/include(env)$ export PYCURL_SSL_LIBRARY=openssl(env)$ pip install pycurl
sudo ln -s /usr/local/lib/libcurl.so.4 /usr/lib/libcurl.so.4
export PYCURL_SSL_LIBRARY=nss
pip install --compile --install-option="--with-openssl" pycurl
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 # 重新编译安装
这篇关于[python] pycurl包安装, libcurl link-time version (7.58.0) is older than compile-time version (7.68.0)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!