Closed dkincaid closed 6 years ago
Installed the package from Github using devtools::install_github("cloudyr/aws.polly"). Then ran the following example from the README:
devtools::install_github("cloudyr/aws.polly")
> library("aws.polly") > vec <- synthesize("Hello world!", voice = "Joanna")
and get the following error:
Error in locate_credentials(key = key, secret = secret, session_token = session_token, : could not find function "locate_credentials"
if I manually load the aws.signature package using library("aws.signature") then it works.
library("aws.signature")
Oops, sorry about that. Please reinstall from GitHub.
Dang! That was a fast fix! Thanks. This is the coolest thing I've seen in a while!
Installed the package from Github using
devtools::install_github("cloudyr/aws.polly")
. Then ran the following example from the README:and get the following error:
if I manually load the aws.signature package using
library("aws.signature")
then it works.