Created
December 20, 2018 14:43
-
-
Save saranjsr/33c8b06b4fb43d667d26935589ebad62 to your computer and use it in GitHub Desktop.
install aws-cli on ubuntu 16.04
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 -ex | |
# To avoid locale.Error | |
export LC_ALL="en_US.UTF-8" | |
export LC_CTYPE="en_US.UTF-8" | |
sudo apt-get update | |
sudo apt-get install -yq python-pip | |
sudo pip install -U awscli | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment