ubuntu AttributeError:在Azure Function中导入“pandas”库时,模块“os”没有属性“add_dll_directory”

soat7uwm  于 2024-01-06  发布在  其他
关注(0)|答案(1)|浏览(376)

我正在努力部署一个依赖于各种库的Azure Function应用程序,包括numpy、torch和pandas(您可以在附件中找到所列的所有先决条件)。虽然应用程序在我的Ubuntu 22.0.4笔记本电脑上顺利运行,但我在部署到远程Azure Function时遇到了一个持久性问题。具体来说,我一直收到以下错误:
“AttributeError:模块”os“没有属性”add_dll_directory“。”
我提供了一个图像显示这些错误供您参考。
在我尝试解决这个问题的过程中,我探索了几个在线可用的解决方案,例如https://github.com/confluentinc/confluent-kafka-python/issues/1462Azure Function App Error: AttributeError: module 'os' has no attribute 'add_dll_directory',中概述的解决方案,但迄今为止没有一个被证明是有效的。此外,我验证init.py了本地pandas安装中的www.example.com文件不包括一行调用_delvewheel_patch_1_5_1()。因此,我怀疑这个问题可能是由于使用了一个 * 不正确版本 * 的 pandas,而不是用于 Windows而不是Linux


的数据

zfycwa2u

zfycwa2u1#

请确保您使用的是最新版本的模块。.dll文件在您的azure函数文件和提到的路径中可用。
在Azure中,您的本地路径将不起作用。
我尝试在我的简单Http触发器代码中使用方法add_dll_directory,它对我很有效。#我的目录:

  1. Myfunction/
  2. ├── HttpTrigger1/
  3. ├── __init__.py
  4. ├── function.json
  5. └── Dll1.dll
  6. ├── host.json
  7. ├── local.settings.json
  8. └── requirements.txt
  9. ├── ...

字符串

__init__.py

  1. import azure.functions as func
  2. import numpy as np
  3. import pandas as pd
  4. import os
  5. try:
  6. current_path = os.path.dirname(os.path.abspath(__file__))
  7. dllpath = os.path.join(current_path,'Dll1.dll')
  8. os.add_dll_directory(dllpath)
  9. except AttributeError:
  10. pass
  11. def main(req: func.HttpRequest) -> func.HttpResponse:
  12. array = np.array([1, 2, 3, 4, 5])
  13. dataframe = pd.DataFrame({'column': array})
  14. response = f"Array: {array}\n\nDataFrame:\n{dataframe}"
  15. return func.HttpResponse(
  16. response,
  17. mimetype="text/plain",
  18. status_code=200
  19. )

reuirements.txt

  1. azure-functions
  2. numpy
  3. pandas

OUTPUT


的数据

展开查看全部

相关问题