Created
April 30, 2019 13:08
-
-
Save gjerokrsteski/a1722a84b5599e0f09ba358897cf5c85 to your computer and use it in GitHub Desktop.
install aws cli and sam using python
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
#!/usr/bin/env bash | |
set -eo pipefail | |
which python | |
pip --version | |
sudo pip install setuptools | |
sudo pip install wheel | |
sudo pip install awscli --upgrade | |
aws --version | |
pip install --user aws-sam-cli | |
USER_BASE_PATH=$(python -m site --user-base) | |
export PATH=$PATH:$USER_BASE_PATH/bin | |
sam --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment