LoginSignup
4
4

More than 5 years have passed since last update.

macにaws-cliをインストール

Posted at

HomeBrewインストール済みなのを前提とする

brew install python --framework
python -V
wget http://peak.telecommunity.com/dist/ez_setup.py
python ez_setup.py
easy_install pip
pip install awscli
pip install awscli --upgrade
mkdir ~/.aws
vi ~/.aws/config
echo 'export AWS_CONFIG_FILE=~/.aws/config' >> ~/.bash_profile
source ~/.bash_profile

~/.aws/config

[default]
aws_access_key_id=(ACCESS_KEY_ID)
aws_secret_access_key=(SECRET_ACCESS_KEY)
region=ap-northeast-1
4
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4