1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

AWS コマンドラインツールの利用

Posted at

Ubuntu 14.04でAWSの
コマンドラインツールを使用する時の設定

pythonが入ってるか確認

$ python --version
Python 2.7.6

入っていなければインストール
$ sudo apt-get install python2.7

pipも入ってるか確認しましょう

$ pip --version
pip 8.1.1 from /usr/local/lib/python2.7/dist-packages (python 2.7)

pipが入っていなければインストール
$ curl -O https://bootstrap.pypa.io/get-pip.py
$ sudo python27 get-pip.py

pipでインストール

$ sudo pip install awscli

インストール確認

$ aws --version
aws-cli/1.11.14 Python/2.7.6 Linux/3.13.0-95-generic botocore/1.4.71

ちゃんと入っています。

AWSコマンドラインツールのヘルプ表示

$ aws help

参考
Installing the AWS Command Line Interface

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?