Hahnemann
Hahnemann

Reputation: 4678

Cannot Install RSConnect Package in RStudio on Mac

I am unable to install the RSConnect package in RStudio with R 3.1.2 on OS X El Capitan via:

install.packages('rsconnect')

It's telling me that:

package ‘rsconnect’ is available as a source package but not as a binary
package ‘rsconnect’ is not available (for R version 3.1.2)

Is there another way to install this package? The Shiny documentation is a little vague on this subject.

Upvotes: 0

Views: 1242

Answers (1)

Michael Veale
Michael Veale

Reputation: 959

Try install.packages("rsconnect", type = "source")

Upvotes: 4

Related Questions