2

When installing ggbiplot I get the following error:

> library(devtools)
> install_github("vqv/ggbiplot")

Downloading GitHub repo vqv/ggbiplot@master
from URL https://api.github.com/repos/vqv/ggbiplot/zipball/master
Installing ggbiplot
Error in `_digest`(c(list(repos, type), lapply(`_additional`, function(x) eval(x[[2L]],  : 
  object 'digest_impl' not found

Obviously it is missing something. Any suggestions to fix this?

Mark
  • 21
  • 4

1 Answers1

2

you could try to install package digest first, via

install.packages("digest")
johnnyRose
  • 7,310
  • 17
  • 40
  • 61