Time to complete: 5-10 minutes.
We are going to use AWS Cloud9 as our cloud-based integrated development environment. It will get you bootstrapped with the right tools and access on Day 1.
If you already have a Cloud9 environment, feel free to use that.
Expand if you want detailed directions
Create your Cloud9 instance by following these steps:
- Navigate to AWS Cloud9 in the console
- Click Create environment
- Provide a name: WildRydesIDE
- Click Next step
- Leave all defaults
- Click Next step
- Click Create environment
Your AWS Cloud9 environment is being created and your screen will look like this:
After a minute or so, your environment will be ready and you can continue.
- Find the "Welcome" tab and click the plus icon next to it
- Select New Terminal
- Run a command to get the caller identity:
aws sts get-caller-identity
- This command will let you know who you are (account number, user ID, ARN)
Hint: New editors and terminals can be created by clicking the green "+" icon in a circle
Let's get our code and start working. Inside the terminal:
- Run the following command to get our code:
git clone https://github.com/aws-samples/aws-serverless-workshops/
- Navigate to our workshop:
cd aws-serverless-workshops/MachineLearning/
At this point we have built our cloud based development environment, verified it is configured with the right credentials, and copied down some source code from a code repository.
We're ready to proceed with building the data processing pipeline.