DEV Community

Cover image for Install awscli on OSX
Adam K Dean
Adam K Dean

Posted on

Install awscli on OSX

Installing awscli on OSX is easy. If you don't already have it, install pip (python's package manager).

Now, to install awscli, do this:

pip install awscli
Enter fullscreen mode Exit fullscreen mode

Then configure it using:

aws configure
Enter fullscreen mode Exit fullscreen mode

Now test it with:

aws ec2 describe-regions
Enter fullscreen mode Exit fullscreen mode

Top comments (0)