LoginSignup
10
10

More than 5 years have passed since last update.

CentOS6にAWSコマンドラインインターフェースをいれる手順メモ

Posted at

最初にyumでpython環境を整えます。
epelリポジトリは導入済みが前提です。

command
yum -y install python python-devel --enablerepo=epel

pythonで公式に提供されているsetuptoolsをyumでいれます。
これでpythonのeasy_installコマンドがインストールされます。

command
yum -y install python-setuptools

easy_installコマンドを使ってpipコマンドをインストールします。

command
easy_install pip

pipコマンドまで入れば後はAWS公式ページの通りpipコマンドでawscliをインストールします。

command
pip install awscli

以上でインストールは完了します。
環境変数の設定などは別途設定が必要です。

こちらをご覧ください。
http://qiita.com/mychaelstyle/items/e09309104dd6daa7c01b

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