LoginSignup
0
0

More than 1 year has passed since last update.

AWS Lambda Layer の作り方 - Python編

Last updated at Posted at 2023-02-10

Install python libraries

mkdir python
pip install -t python yahoo_fin stockstats
zip -r9 layer.zip python

Create Lambda layer and upload zip file

aws lambda publish-layer-version \
    --layer-name python-layer \
    --license-info "MIT" \
    --zip-file fileb://layer.zip \
    --compatible-runtimes python3.7 python3.8
0
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
0
0