Created
June 23, 2019 13:05
-
-
Save levynir/952731d77d07e57527e84cfb006666bd to your computer and use it in GitHub Desktop.
script to install AWS CLI on macOS
This file contains 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
#!/bin/bash | |
curl -O https://bootstrap.pypa.io/get-pip.py | |
python get-pip.py --user | |
pip install awscli --upgrade --user | |
echo \"export PATH=\${PATH}:`ls -1d ${HOME}/Library/Python/*.*/bin | tail -1`\" >> ~/.profile | |
aws configure |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment