R and RStudio incompatibility with Yosemite Mac OS X 10.10
[This article was first published on Computational Mathematics » R, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
There is currently a bug (or feature?) in the current version of Yosemite (OS X 10.10) that messes with the passing of environmental variables to programs launched from Finder (as pointed out by Adam Maxwell).
Notably, this means that Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
PATH
variables are not passed properly to R.app
or RStudio.app
. You may end up seeing errors such as the following:
Until Apple releases a fix to this, the easy workaround is to launch the desired application from the command-line (terminal). For example to launchError in system("pdflatex", intern = TRUE) : error in running command sh: pdflatex: command not found
Error in system("convert", intern = TRUE) : error in running command sh: convert: command not found
R
, you can instead run
/Applications/R.app/Contents/MacOS/R
And for RStudio, you can run
/Applications/RStudio.app/Contents/MacOS/RStudio
Let’s hope Apple releases a fix soon.
UPDATE from RStudio:
”
We’ve fixed this on our end in the latest version of RStudio for OS X, available here: http://www.rstudio.com/products/rstudio/download/
Give it a try and let us know if it works for you.
“
To leave a comment for the author, please follow the link and comment on their blog: Computational Mathematics » R.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.