Last active
April 12, 2021 05:12
-
-
Save michaelbrewer/490adbd084424f507f82debf27b9ebf6 to your computer and use it in GitHub Desktop.
Setting up aws-lambda-powertools
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Ensure we have the latest pip and pipenv | |
pip3 install --upgrade pip pipenv | |
# Setup new Python 3.8 project | |
pipenv --python 3.8 | |
# Install aws-lambda-powertools | |
pipenv install boto3 aws-lambda-powertools | |
# Install dev dependencies | |
pipenv install black pytest isort mypy --dev --pre |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment