Linux R server (Shiny): Install Windows binaries - r

Is there some way to install a (modified) R package (zip Windows binaries) on a linux machine (using command line) running Rserver + Shiny ?

Related

Connect my system's Rstudio to anaconda environment with R. Windows

I am working on Windows 10. I have installed RStudio directly on my machine. On the other hand I have installed Anaconda with R. Is it possible to connect my system's RStudio with the R running in one environment in Anaconda?

Using Linux bash in Windows 10 to introduce Linux R interpreter to Rstudio (Windows application) .

I have a real problem with Unicode in Windows. So I just use Linux. Now I want to know if there is any innovative way to use Microsoft R Open which is installed on Linux bash as the interpreter in RStudio in Windows 10.
I know I can install an X Server on Linux bash but I want it to work in native Windows application.
Maybe this video is needed for inspiration.
Have smart minds any idea?
It is now possible to run RStudio Server on Bash on Ubuntu on Windows by installing opencpu and RStudio Server.
Please follow https://www.opencpu.org/download.html instructions.
Tested on Windows 10 Build 16299 with
opencpu-2.0 and rstudio-server-1.1.383-amd64
Install RStudio with conda, and stick to the Anaconda channels. They use MS Open R.
See also:
https://www.guru99.com/download-install-r-rstudio.html

Why is RStudio running a different version of R when I run as an admin?

When I call sudo rstudio in Terminal, it runs off of the CRAN R version, but if I just run rstudio it runs off of Microsoft R Open.
Why could this be?

Installing R package on linux built on windows

I have a package on windows that builds successfully and works on a windows machine and I would like to make it available on a linux machine
Here are the steps I took in windows
I went to build >> Build Binary package and this created a zip file packageA.zip
Then I used tar to make a tar file from the zip file
tar("packageA.tar.gz" , "C://users/me/packageA.zip)
Then I try to install the package on the linux machine
install.packages("packageA.tar.gz")
but, I get this error
installation of package 'packageA.tar.gz' had non-zero exit status.
Any idea how to install this on linux?

Connecting RStudio with Remote R machine

I have RStudio installed on my Windows machine and R installed on one of the nodes of a hadoop cluster. I want to connect RStudio to that slave machine and want to run my R script. I have all the R packages required for hadoop integration installed on that slave machine. I can not use Windows-based R.
One solution is to install RStudio Server on that machine (Linux) and then access RStudio Server by pointing your web browser to <IP ADDRESS>:8787.

Resources