0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

M1 MacにAWS-CLIをインストールする方法

Posted at

はじめに

M1 Mac に AWS-CLI をインストール方法になります。
インストールしたものの上手く実行できない方向けに、AWS-CLIを一旦アンインストールしてから、再インストールする手順になります。

AWS-CLI をアンインストールします

sudo rm -rf /usr/local/aws-cli
sudo rm /usr/local/bin/aws

AWS-CLI をインストールします

  1. ファイルのダウンロード
    ホームディレクトリにパッケージをダウンロードします。
curl "https://awscli.amazonaws.com/AWSCLIV2.pkg" -o "$HOME/AWSCLIV2.pkg"
  1. インストール実行
    ダウンロードしたファイルでAWS CLIをインストールします。
sudo installer -pkg "$HOME/AWSCLIV2.pkg" -target /
  1. 動作確認
    正常にインストールできたかを確認。
aws --version

以上になります。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?