简体   繁体   English

运行 python azure 函数应用程序时遇到错误:ImportError: /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found

[英]Facing error while running python azure function app: ImportError: /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found

Facing below error while running python azure function app:运行 python azure 函数应用程序时遇到以下错误:

ImportError: /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found ImportError:/lib/x86_64-linux-gnu/libm.so.6:未找到版本“GLIBC_2.29”

Also facing issue in ci pipeline 'install dependencies' task as below: Using legacy 'setup.py install' for pyodbc, since package 'wheel' is not installed.在 ci 管道“安装依赖项”任务中也面临如下问题:使用旧的“setup.py install”进行pyodbc,因为未安装包“wheel”。 Azure python函数CI管道报错截图

Just added below line in my CI yaml file and it resolved the issue: pip install wheel刚刚在我的 CI yaml 文件中添加了以下行,它解决了问题:pip install wheel

before pip install setuptools在 pip install setuptools 之前

For me, it was fixed by updating the Azure pipeline YAML file in Azure DevOps:对我来说,它是通过更新 Azure DevOps 中的 Azure 管道 YAML 文件来修复的:

variables:  
  # Agent VM image name
  vmImageName: 'ubuntu-18.04'

I had this issue while using ubuntu-latest as VM image.我在使用ubuntu-latest作为 VM 映像时遇到了这个问题。

Found this here 在这里找到这个

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 /lib/x86_64-linux-gnu/libm.so.6:找不到版本“GLIBC_2.29”(/usr/local/lib/python3.7/dist-packages/pyexiv2/lib/libexiv2.so 需要)colab粘性物 - /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found (required by /usr/local/lib/python3.7/dist-packages/pyexiv2/lib/libexiv2.so) colab goo 我收到错误 ImportError: /lib/arm-linux-gnueabihf/libm.so.6: version `GLIBC_2.29' not found while Performing Google Assistant on Raspberry Pi - I am getting error ImportError: /lib/arm-linux-gnueabihf/libm.so.6: version `GLIBC_2.29' not found while Performing Google Assistant on Raspberry Pi 加载 Python lib '/tmp/_MEItueAuk/libpython3.7m.so.1.0' 时出错:dlopen: /lib/x86_64-linux-gnu/libc.so.6: 找不到版本 'GLIBC_2.28' - Error loading Python lib '/tmp/_MEItueAuk/libpython3.7m.so.1.0': dlopen: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.28' not found Python3:导入错误:/lib/x86_64-linux-gnu/libQt5Core.so.5:未找到版本“Qt_5.15” - Python3: ImportError: /lib/x86_64-linux-gnu/libQt5Core.so.5: version `Qt_5.15' not found Ubuntu 16.04 LTS 中的 Python 给出错误 /lib/x86_64-linux-gnu/libc.so.6 version `GLIBC_2.25' not found - Python in Ubuntu 16.04 LTS gives error /lib/x86_64-linux-gnu/libc.so.6 version `GLIBC_2.25' not found 获取 ImportError /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version 'CXXABI_1.3.11' not found - Getting ImportError /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version 'CXXABI_1.3.11' not found /usr/lib/x86_64-linux-gnu/libstdc++.so.6: 找不到 TensorFlow 需要的版本“GLIBCXX_3.4.21” - /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.21' not found required by TensorFlow AWS 代码构建 Python 库错误 GLIBC_2.29 未找到 - AWS Code Build Python Library Error GLIBC_2.29 not found 如何处理:ImportError: /usr/lib/x86_64-linux-gnu/libatk-1.0.so.0: undefined symbol: g_log_structured_standard - How to deal with: ImportError: /usr/lib/x86_64-linux-gnu/libatk-1.0.so.0: undefined symbol: g_log_structured_standard Python在ldconfig -p确实找到的/ usr / lib / x86_64-linux-gnu中找不到库 - Python not finding library in /usr/lib/x86_64-linux-gnu that ldconfig -p does find
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM