possible to run RShiny app without opening an R environment?

后端 未结 7 1140
一个人的身影
一个人的身影 2021-01-30 05:45

Currently I have a R shiny app, to run it I open up RStudio and execute

setwd(\"C:/Users/Me/Desktop/R/ShinyProject2\")
library(shiny)
......
runApp()
         


        
7条回答
  •  粉色の甜心
    2021-01-30 06:07

    I know this is an old discussion, but it might help someone knowing this can be done now. You can create a standalone shiny app, that runs on computers WITHOUT needing to install R nor any library. There is a relatively simple way of doing it (currently I've done it only for Windows users, but something for MacOS should be around too), following these detailed steps: http://www.r-bloggers.com/deploying-desktop-apps-with-r/ .Other option could be uploading the app on the Shiny server.

提交回复
热议问题