R包googlesheets默认浏览器更改

时间:2019-06-20 10:16:50

标签: r google-sheets

我跑步时

#get the library
library(googlesheets)
#initialize token
gs_auth(new_user = TRUE)

它总是打开我的firebox浏览器,但是,我希望它打开我的chrome浏览器,是否可以更改默认的打开浏览器?

顺便说一句,我的操作系统是Windows 7
R版本3.3.3
googlesheets版本0.3.0

1 个答案:

答案 0 :(得分:1)

您可以使用options(browser = "/path/to/executable")设置从R会话启动哪个浏览器。要在Windows上启动Chrome浏览器,可能看起来像这样:

options(browser = "C:/Program Files/Google/Chrome/Application/chrome.exe")

NB:同一命令可用于指定启动闪亮应用程序的浏览器,例如Opening Shiny App directly in the default browser