Appendix: Download data from S3
Last updated
Was this helpful?
Last updated
Was this helpful?
Note: This option can only download one file at a time
Sign in and access the link to the bucket: https://s3.console.aws.amazon.com/s3/buckets/<BUCKET_NAME>
When you are inside AWS S3 dashboard, click on a file then click the "Download" button.
Set up AWS CLI
When run aws configure
, you may set:
region: ap-southeast-1
output format: as default
AWS official link: Getting started with the AWS CLI
Use sync
command to copy from S3 bucket to local files(https://docs.aws.amazon.com/cli/latest/reference/s3/sync.html)
Note: You may click on "Copy S3 URI" button on AWS S3 dashboard to quickly copy folder location on S3.
# Download a S3 folder `s3://client-linh/output/2d/` recursively
# to local directory `/Users/linh/2d_output`
aws s3 sync s3://client-linh/output/2d/ /Users/linh/2d_output