Google Cloud VM - googleAuthR 库没有调用错误

Google Cloud VM - googleAuthR library no called error

我在 google 云环境中 运行 有一个 R 脚本,它帮助我提取 google 分析数据,然后将其存储在存储中。我在我的脚本的一行中调用了 googleAuthR 库,但我一直收到同样的错误。有没有人以前遇到过这个问题或可以提供帮助?

我这样称呼图书馆:


library(googleAuthR)
library(googleCloudStorageR)

我得到的错误文本:

Error in library(googleAuthR) : there is no package called ‘googleAuthR’

看起来你的 R 安装找不到包。可能它没有安装在 R 正在寻找它的地方。

要修复它,只需从终端打开 R 并执行:

install.packages("googleAuthR");

install.packages("googleCloudStorageR");

请记住,您需要传递 Google 凭据才能使用云存储(例如在 .json 文件中,并设置 GOOGLE_APPLICATION_CREDENTIALS 环境变量 - 请参阅 https://cloud.google.com/docs/authentication/getting-started ).