aws コマンドラインインターフェイス(cli)をインストールしましたので、
手順を共有しておきます。
実行環境
手順
私のmacには、python2系しか入っていなかったので、python3系をインストール
$ brew install python3
$ python
python python2.6 python2.7 python3 python3.6 python3.6m pythonw pythonw2.7
python-config python2.6-config python2.7-config python3-config python3.6-config python3.6m-config pythonw2.6
get-pip.py ファイルをダウンロード
$ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
get-pip.py ファイルを実行
$ python get-pip.py
pip3がインストールされたことを確認
$ pip3
pip3 pip3.6
それでは、aws コマンドラインインターフェイスをインストール
$ pip3 install awscli
正常にインストールできました
$ aws --version
aws-cli/1.15.4 Python/3.6.5 Darwin/16.7.0 botocore/1.10.4
コメントを書く