This repository houses all code needed to setup, evaluate and test code for the Amazon Routing Challenge.
Using the rc-cli, participants of the Amazon Routing Challenge will be able to:
- Create a new app
- Run local development code with competition data
- Run environment agnostic code with competition data
- Save solution files (a file that can be submitted for evaluation)
- Test local code and solutions with the official scoring algorithm
Saved solutions that have been tested can be uploaded to the competition site: routingchallenge.io
- Install Docker:
- Note: Make sure to install Docker Engine v18.09 or later
- If you have an older version of Docker, make sure BuildKits are enabled
- On Linux based systems you may need to follow the post installation setup instructions for docker:
sudo groupadd dockersudo usermod -aG docker $USER- Validate the Installation
docker run hello-world
- Install Git
- It is likely
gitis already installed. You can check with:git --version
- Install the
rc-cli
- Run the following commands to install the
rc-clibash <(curl -s https://raw.githubusercontent.com/MIT-CAVE/rc-cli/main/install.sh)- Follow the prompts to finish the installation process
- Validate the installation was successful
- Run the following command:
rc-cli version
- If successful, the output should look something like:
Routing Challenge CLI 0.2.0 - If unsuccessful, you may get something like:
rc-cli: command not found
- Continue to the Download Your Dataset section below
- Install Docker
- Install WSL2 update during Docker installation
- Update your WSL2 Kernel (If you are prompted during installation)
- Click on link to the Windows Documentation about WSL2
- Download the file to update the WSL kernel package to WSL2
- Use the downloaded package to install the WSL2 Kernel
- Update your WSL2 Kernel (If you are prompted during installation)
- Reboot your system
- Open PowerShell as Administrator
- In PowerShell type:
wsl --set-default-version 2 - Press
Enter - Exit PowerShell
- Install Ubuntu 20.04
- In the Microsoft store, search for
Ubuntu 20.04 - Install the Ubuntu 20.04 App
- Open the
Ubuntu 20.04app
- This may take a while the first time
- You will be prompted for a username and password
- Set your username and password
- MAKE SURE TO REMEMBER THESE
- Close the app
- Open the Docker Desktop app
- In settings > resources > WSL Integration
- Allow Ubuntu 20.04
- Reboot Docker
- Open the
Ubuntu 20.04app
- Run the following commands to finish setting up Docker:
- Note: You may be prompted for your password
- This is your Ubuntu password
sudo groupadd docker
sudo usermod -aG docker $USER - Note: You may be prompted for your password
- Validate Docker is working with the following command:
docker run hello-world
- This may not work until you close and re-open Docker.
- Install the
rc-cliin theUbuntu 20.04app
- Run the following commands to install the
rc-clibash <(curl -s https://raw.githubusercontent.com/MIT-CAVE/rc-cli/main/install.sh)- Follow the prompts to finish the installation process
- Validate the installation was successful in the
Ubuntu 20.04app
- Run the following command:
rc-cli version
- Continue to the Download Your Dataset section below
As of version 0.2.x, RC CLI does not download the data sources for you in the installation process. Please follow the steps below to download your data set:
-
Install the AWS CLI tool
-
Alternatively, explore the datasets available for the 2021 Amazon Last Mile Routing Research Challenge
aws s3 ls --no-sign-request s3://amazon-last-mile-challenges/almrrc2021/-
Select the desired dataset (evaluation or training) and copy it to your
datadirectory in therc-cliinstallation path- Evaluation dataset:
aws s3 sync --no-sign-request s3://amazon-last-mile-challenges/almrrc2021/almrrc2021-data-evaluation/ ~/.rc-cli/data/- Training dataset:
aws s3 sync --no-sign-request s3://amazon-last-mile-challenges/almrrc2021/almrrc2021-data-training/ ~/.rc-cli/data/ -
For more information, see the official Registry of Open Data on AWS
-
Continue to the Create Your App section below
- Get available commands
rc-cli help- Create an app in your current directory
- Note: Feel free to change
my-appto any name you want
rc-cli new-app my-app- Enter the app directory
cd my-app- Get the folder location on your machine to open the app in your favorite editor.
- On Mac:
- Open your current directory in finder
open . - Display your current directory as a path
echo $PWD
- Open your current directory in finder
- On Linux:
- Display your current directory as a path
echo $PWD
- Display your current directory as a path
- On Windows 10 (using WSL Ubuntu 20.04)
- Open explorer from your current directory
explorer.exe . - Alternatively, your
Ubuntu 20.04app stores files on your local operating system at:\\wsl$>Ubuntu-20.04>home>your-username
- Open explorer from your current directory
- All
rc-clicommands and usages are documented in your created application asREADME.md