Search code examples
rubuntushinyshiny-serverr-package

Shiny server and install packages


Hello I´m started with shiny server and with linux.I have some question about this. First if i want use package like rodbc or shinydashboard in shiny -server where i must install them? Second how can I install them?


Solution

  • In order to install packages to Shiny, you'll want to install them via the CRAN repository. To do that, we'll start by opening the R console:

    $ R

    Once you're in the R console, installation from CRAN is very simple.

    > install.packages("packagename")

    and if you are looking for more CRAN packages to install (or what to confirm the package name) you can find it on the R project website