Skip to content

Instantly share code, notes, and snippets.

@levynir
Created June 23, 2019 13:05
Show Gist options
  • Save levynir/952731d77d07e57527e84cfb006666bd to your computer and use it in GitHub Desktop.
Save levynir/952731d77d07e57527e84cfb006666bd to your computer and use it in GitHub Desktop.
script to install AWS CLI on macOS
#!/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