1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

AWS LambdaでmsoffcryptoライブラリOS依存エラー対応

Last updated at Posted at 2024-07-11

Windows環境でmsoffcrypto-toolのzipを作成して、layerに設定して使ったら、参照のqiita記事と同じく下記のようなエラーが発生していた。

lib64/libc.so.6: version `GLIBC_2.28' not found

OS依存関係の問題がある模様だった。
ChatGPTに聞いたらDockerを使ってみてと言うが、その方法も上手くいかない。

それで参照のqiita記事を読んでヒントを得て下記のようにlayer用のzipを作成してみた。

  • 修正前
pip install msoffcrypto-tool -t ./python/
  • 修正後
pip install --platform manylinux2014_x86_64 --implementation cp --only-binary=:all: msoffcrypto-tool -t ./python/

(以降/pythonを圧縮)

これで作ったzipをlayerに設定したら、
GLIBC_2.28関連エラーがなくなって正常に動くようになった。

因みにExcelファイルにパスワードをかけるためにmsoffcrypto-toolを使った。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?