Jason Melo Hall
Jason Melo Hall

Reputation: 662

Find ~/.aws to Setup Boto3 Credentials and Region in Cloud9

I recently installed boto3 in Cloud9 IDE which uses Ubuntu. Below is what I see in the terminal:

~/workspace (master) $ pip install boto3
Requirement already satisfied (use --upgrade to upgrade): boto3 in /usr/local/lib/python2.7/dist-packages

Then I tried to set Credentials and Region, but I can't locate the /.aws folder.

I tried finding the folder as follows:

~ $ find aws
find: `aws': No such file or directory

I also tried searching manually for the folder but to no avail. How can I find the directory so I can setup my credentials and region?

Upvotes: 2

Views: 820

Answers (1)

Brady Dowling
Brady Dowling

Reputation: 5562

You need aws cli installed to configure credentials and region. See this Boto3 guide.

Upvotes: 1

Related Questions