by shigemk2

当面は技術的なことしか書かない

awscli v1 to v2ポイント

docs.aws.amazon.com

の、リンク。

dev.classmethod.jp

pip install awscliじゃv1しかインストールできないのはPyPIに登録されていなくて、PyPIが登録されていないのはawscliのインストールだけでものすごい負担がかかるから。

$ sudo yum install -y python3 python3-devel gcc libffi-devel openssl-devel
$ python3 -mpip install  https://github.com/boto/botocore/archive/v2.tar.gz
$ python3 -mpip install  https://github.com/aws/aws-cli/archive/v2.tar.gz
$ aws --version
aws-cli/2.0.0 Python/3.7.4 Linux/4.14.165-131.185.amzn2.aarch64 botocore/2.0.0dev4

インストールはこのあたりを参照に。 github.com