Ubuntu20.04でやりました。
aws cli v1を使っていたら、v2でないと出来ないコマンドがチュートリアルに出てきたのでアップデートしました。
まず、v2のインストール説明によると、
AWS CLI versions 1 and 2 use the same aws command name. If you have both versions installed, your computer uses the first one found in your search path. If you previously installed AWS CLI version 1, we recommend that you do one of the following to use AWS CLI version 2:
https://docs.aws.amazon.com/cli/latest/userguide/install-cliv2-linux.html
v1とv2を共存させると、Pathを順に見るから面倒で、v1は消すのをおおすすめしますよ、とのこと。
こちらのv1の説明で、
$ sudo rm -rf /usr/local/aws
$ sudo rm /usr/local/bin/aws
https://docs.aws.amazon.com/cli/latest/userguide/install-linux.html
が紹介されていましたが、2行目は、自分の環境では /usr/local/bin/aws ではなくて、/usr/bin/awsでした。
あとはv2のインストールをそのままやりました。
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install
これら3つを実行すると
You can now run: /usr/local/bin/aws --version
aws --versionaws-cli/2.0.45 Python/3.7.3 Linux/5.4.0-42-generic exe/x86_64.ubuntu.20
0 件のコメント:
コメントを投稿