gpt4 book ai didi

python - 无法导入模块 'lambda_function' : No module named 'cx_Oracle'

转载 作者:行者123 更新时间:2023-11-30 21:55:19 26 4
gpt4 key购买 nike

我正在尝试使用 Python 创建一个 AWS Lambda 函数来连接到 Oracle 数据库(目前只是测试连接)。但我没有成功完成流程。每次我看到此错误消息时:

    {      "errorMessage": "Unable to import module 'lambda_function': No module named 'cx_Oracle'",      "errorType": "Runtime.ImportModuleError"    }

I've created a virtualenv at Ubuntu WSL, install the Oracle InstantClient on the lib folder, install cx_oracle by pip at sites-package folder, and create my lambda function at the same folder, zip everything, upload at my S3 and put to run.

Can anyone help me?

My code:

    import cx_Oracle

# Yeah, you need this
with open('/tmp/HOSTALIASES', 'w') as f: f.write(f'{os.uname()[1]} localhost\n')

# Oracle away!
def lambda_handler(event, context):
return str(
cx_Oracle.connect(
'username',
'password',
cx_Oracle.makedsn(
'rds.amazonaws.com', 1521, 'SOME_SID',
)
).cursor().execute('SELECT 42 FROM DUAL').fetchone()
)

我的网站包文件夹: folder

** 我的 lambda 配置:** lambda

最佳答案

AWS Lambda 与 Amazon Linux 一起运行,因此您需要 cx_Oracle 的兼容库,在本例中 manylinux.whl

只需下载 whl,解压缩,然后将 .so 文件复制到您的 lib 文件夹中。

这样 Lambda 将识别 cx_Oracle。

文件夹结构应如下所示: structure

关于python - 无法导入模块 'lambda_function' : No module named 'cx_Oracle' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56996655/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com