web-dev-qa-db-ja.com

Ubuntu 14.04でのAWS CLIの更新

apt-get installを使用してEC2インスタンスにawscliをインストールしました。

バージョンはまだaws-cli/1.2.9であり、apt-get upgrade awscliを使用しても更新されません。私がGoogledした最新のリリースは1.10.30です。

Ubuntu 14.04でpdate aws cliを実行するにはどうすればよいですか?

ありがとうございました。

PS。持ってないのでピップ以外

12
julio

ここでは、アップグレードを実行する方法について説明します。

http://docs.aws.Amazon.com/cli/latest/userguide/installing.html

ここで私のために仕事をしました:

To install the AWS CLI using the bundled installer
Download the AWS CLI Bundled Installer using wget or curl.
Unzip the package.

Run the install executable.

On Linux and OS X, here are the three commands that correspond to each step:

curl "https://s3.amazonaws.com/aws-cli/awscli-bundle.Zip" -o "awscli-bundle.Zip"
unzip awscli-bundle.Zip
Sudo ./awscli-bundle/install -i /usr/local/aws -b /usr/local/bin/aws
8
jcuypers