I get the error Boto3 Error: botocore.exceptions.NoCredentialsError: Unable to locate credentials when trying the following code s3 = boto3.resource('s3') bucket_name = "python-sdk-sample-%s" % uuid.uuid4() print("Creating new bucket with name:", bucket_name) s3.create_bucket(Bucket=bucket_name) This is output from boto3.set_stream_logger(‘botocore’, level=’DEBUG’) 2022-04-24 ...