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?
Asked
Active
Viewed 978 times
-2
-
If you have already installed `R` on your `linux ubuntu` server then you just type R in terminal which will open R environment in your terminal. After that you can install any R package, for example `install.packages("shinydashboard")`. – Santosh M. Nov 08 '17 at 14:02
1 Answers
0
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

Bryce McDonald
- 1,760
- 12
- 22