Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installation error with RDCOMClient in RSTUDIO

I´m trying to install the RDCOMClient package in rstudio in order to use the R2PPT package to create power point presentations.

I search and the instruction to install RDCOMClient package is:

install.packages("RDCOMClient", repos = "http://www.omegahat.org/R")

The problem is that the reposotory webpage is not available anymore.

does anyone know how to install the RDCOMClient or use R2PPT without RDCOMClient package?

like image 223
RafaelCacho Avatar asked Feb 19 '16 15:02

RafaelCacho


2 Answers

You can install it from github

https://github.com/omegahat/RDCOMClient

library("devtools")
install_github('omegahat/RDCOMClient')

should work.

like image 94
Florian Avatar answered Sep 18 '22 13:09

Florian


To those struggling to install RDCOMClient with the warning:

package ‘RDCOMClient’ is not available (for R version 3.5.0)

Remember to explicitly set the repo to load from the omegahat source (as opposed to the default CRAN location):

install.packages("RDCOMClient", repos = "http://www.omegahat.net/R")

Note the OP used the old website as repo source.

like image 25
Nick Avatar answered Sep 20 '22 13:09

Nick