a1b2c3
a1b2c3

Reputation: 25

Error installing gt package in R studio on a Mac

When I attempt to install the package gt I'm met with the following error message

> install.packages("gt") Error in install.packages : error reading from connection

Is there a way I can install the package gt in R Studio on a Mac?

Upvotes: 0

Views: 1253

Answers (1)

a1b2c3
a1b2c3

Reputation: 25

As jared_mamrot suggested in a comment, the solution was:

devtools::install_github(rstudio/gt)

Upvotes: 0

Related Questions