Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 564 Bytes

install_aws_-_commandline_interface_(aws.cli).md

File metadata and controls

27 lines (18 loc) · 564 Bytes

DeepRacer-For-Dummies - Install the AWS Commandline Interface (awscli)

  1. Install aws-cli

    pip install --upgrade --user awscli
    
  2. Update your path to include the default location for aws:

    echo "export PATH=\"$HOME/.local/bin:$PATH\"" >> ~/.bashrc && source ~/.bashrc
    
  3. Verify

    aws --version
    

    You should see soething similar to this:

    aws-cli/1.16.215 Python/3.7.3 Linux/5.0.0-23-generic botocore/1.12.205
    

Back to readme