Graviton
Linh Community
  • What is Graviton?
  • Getting Started
    • Work Flow
    • First Steps
  • Administration
    • Manage Account
    • Manage Team
  • Dataset
    • Create Dataset
      • Upload data to dataset
      • Prerequisite: Upload data to S3
    • Export Data
      • Appendix: Download data from S3
    • Access Dataset
    • Import Data
    • Dataset Insights
  • Annotation
    • 2D Workspace
    • 3D Workspace
    • Task Inspection
    • Export Annotation Task
  • Accelerate
    • Instruction
    • Assign By Labels
    • Feedback
  • Other
    • Integration
    • FAQ
    • What's next
  • 🆕Release notes
    • Changelog
  • 🔒Data Security
    • Company Security
    • Cloud Security
    • Access Security
    • Workforce Risk Management
    • HIPAA (In Progress)
    • PDPA (In Progress)
    • GDPR (In Progress)
Powered by GitBook
On this page
  • Option 1: Download via AWS UI (one file at a time)
  • Option 2: Download via CLI
  • Prerequisite
  • Usage

Was this helpful?

  1. Dataset
  2. Export Data

Appendix: Download data from S3

PreviousExport DataNextAccess Dataset

Last updated 2 years ago

Was this helpful?

Option 1: Download via AWS UI (one file at a time)

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.

Option 2: Download via CLI

Prerequisite

  • 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

Usage

  • 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