You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Install minio cli
brew install minio/stable/mc
# create an "alias" to use `mc` when the user calls `aws s3`.
echo 'aws() { if [[ $1 == "s3" ]]; then command mc "${@:2}"; else command aws "$@"; fi; }' >> ~/.zshrc
# re-source zshrc, so the alias becomes active
source ~/.zshrc
The text was updated successfully, but these errors were encountered:
There is a known issue with the AWS CLI on Apple Silicon when running in a Virtualized enviroment.
See: aws/aws-cli#7299 (comment)
This step seems to be impacted by the issue.
The workaround is to use something like minio cli
The text was updated successfully, but these errors were encountered: