My Digital Garden

Installing AWS CLI on Linux

Installing AWS CLI on Linux

  • Specific instructions for Ubuntu on WSL

  • login to system, access home directory

  • enter following

    curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
    unzip awscliv2.zip
    sudo ./aws/install
  • alternatively to update existing installation

    curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
    unzip awscliv2.zip
    sudo ./aws/install --bin-dir /usr/local/bin --install-dir /usr/local/aws-cli --update
  • to check install aws --version

See also