David Resch
David Resch

Reputation: 113

Cannot load ggplot2 in R

I tried to load ggplot2 and got the following error message.

library(ggplot2)
sh: otool: command not found
Error : .onLoad failed in loadNamespace() for 'tcltk', details:
  call: system2("otool", c("-L", shQuote(DLL)), stdout = TRUE)
  error: error in running command
Error: package or namespace load failed for ‘ggplot2’

Upvotes: 1

Views: 434

Answers (1)

babylinguist
babylinguist

Reputation: 414

Assuming you are using Mac OSX, you can resolve this issue by deleting X11 (Applications > Utilities > X11), as well as the folder in "/opt" (from Finder, go to folder > /opt). Then, reinstall X11 (http://xquartz.macosforge.org/trac). Restart your R session and you should be good to go.

Upvotes: 1

Related Questions