In the Module: Source Systems, Data Ingestion, and Pipelines, practice lab 2 (interacting with practice-lab-2-interacting-with-amazon-dynamodb-nosql-database), after creating the cloud9 environment, when I type the command to download the required files for the lab (aws s3 cp --recursive s3://dlai-data-engineering/labs/c2w1lab2-398615/), I am getting an error - “aws: error: the following arguments are required: paths”. I created a new environment as well, but that error still pops up.
Hello @rishimad
The right command is aws s3 cp --recursive s3://dlai-data-engineering/labs/c2w1lab2-398615/ ./
. You are missing out the ./
at the end, which is the local path that the files are going to be copied to.
Yes; I was trying these work arounds. Missed this…Thanks!