Created
December 15, 2017 08:02
-
-
Save crazyrohila/5a64d28ab8eab18e4f94ba19ed34c4c5 to your computer and use it in GitHub Desktop.
aws cli in mac
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
#Install pip | |
`curl -O https://bootstrap.pypa.io/get-pip.py` | |
` python get-pip.py --user` | |
# Install cli | |
`pip install awscli --upgrade --user` | |
Read More: http://docs.aws.amazon.com/cli/latest/userguide/awscli-install-linux.html | |
# Add to path | |
Add following line to bash profile: | |
`export PATH=~/Library/Python/2.7/bin/:$PATH` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment