Install R packages on remote linux server via RSclient on a windows machine -
we using r ubuntu server in cloud hosted aws run our models on. can connect server r studio on desktop rsclient:
library(rsclient) c <- rsconnect(host="*confidential*", port = *confidential*) rseval(c, "require(rodbc)") [1] true
but when try install additional packages in same way, fails , takes 5 minutes before msg:
rseval(c, "install.packages('surv')") error in rseval(c, "install.packages('surv')") : remote evaluation failed
since server set third party , not ask them time need additional package, install myself. have no experience linux hoping possible r on own machine.
any appreciated!
best regards, tim
Comments
Post a Comment