Search code examples
rrstudioggvis

R Session Aborted when loading package


My RStudio (0.99.879, R 3.2.3, OSX 10.11.3) crashes with the R Session Aborted error box every time I run require(ggvis) (v0.4.2). I've reinstalled R, RStudio and ggvis - no change. Any idea what's causing this, or how to traceback?

Running Sys.getenv() gives me this report, if it helps.


Solution

  • Sometimes startup errors like this can be caused by out-of-date dependent packages. You can try updating the packages that ggvis depends on with:

    db <- available.packages()
    deps <- tools::package_dependencies("ggvis", db)$ggvis
    install.packages(deps)