在Ubuntu 14.04上更新AWS CLI


12

我使用安装awscli在EC2实例上apt-get install

该版本仍然aws-cli/1.2.9可用,如果使用则不再更新apt-get upgrade awscli。我从Google搜寻到的最新版本是1.10.30。

如何在Ubuntu 14.04上更新AWS CLI

谢谢。

PS。除了使用pip以外,因为我没有。


1
是什么导致您无法安装pip?我猜您可以使用easy_install或手动下载源代码发行版。
约旦2016年

Answers:


8

这是有关如何执行升级的说明。

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

鼓励与外部资源的链接,但答案中应包含来自链接的重要/相关信息。通常,最好使答案尽可能独立。始终引用外部资源中最相关的部分,因为其URL可能会更改或永久脱机。
Anthony Geoghegan
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.