Reputation: 3
I am trying to build a facebook bot using claudia, by following this guide, I was told to:
However I cannot find either 'aws' folder or 'credentials' file on my mac.
Some people say I can find it at ~/.aws/credentials
, but it's not working as well.
Please help with this issue.
Thank you.
Upvotes: 0
Views: 885
Reputation: 33797
You need to install the AWS CLI (Command Line Interface) tool unless you already have it installed. Since you are using a Mac, you can do that using Homebrew, e.g. $ brew install awscli
. Next, you can execute the configure command, e.g.
$ aws configure
When prompted, you enter AWS credentials (AWS access key id and AWS secret access key) and some default configuration. As a result, the ~/.aws/credentials
and the ~/.aws/config
files will be created.
See also the AWS CLI getting started guide.
Upvotes: 3