作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
sudo apt install awscli
安装当前版本 1.16.113-1
官网(https://docs.aws.amazon.com/cli/latest/userguide/install-cliv2-linux.html)支持aarch64
但是 不是 armhf
.
有没有另一种方式或我缺少的东西。 v1 和 v2 之间的差异并不大,但例如 v1 不支持 --storage-class DEEP_ARCHIVE
最佳答案
通过直接从 github 上的 awscli v2 分支 checkout 和安装,让它在 Raspberry Pi 2 上工作。
你需要运行一个现代的python(3.6+?),所以整个过程在它自己的venv中被隔离,以免弄乱系统python。
大致基于这些方向 https://github.com/aws/aws-cli/tree/v2#cli-dev-version我们得到:
$ git clone https://github.com/aws/aws-cli.git
$ cd aws-cli && git checkout v2
$ pip3 install -r requirements.txt
$ pip3 install .
$ aws --version
aws-cli/2.1.14 Python/3.9.1 Linux/4.19.66+ source/armv6l.raspbian.9 prompt/off
关于amazon-web-services - 如何在树莓派上安装 awscli 版本 2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63030641/
我是一名优秀的程序员,十分优秀!