tags:

views:

68

answers:

1

I'm trying to install a package into R, something I swore on my blood never to do, yet here I am.

The command supposedly goes: install.packages('NCStats',,'http://www.rforge.net/') while I am enjoying the healthy dose of:

Warning: dependencies 'nortest', 'plotrix', 'sciplot', 'car', 'gplots', 'gdata', 'Hmisc', 'TeachingDemos' are not available
trying URL 'http://www.rforge.net/bin/macosx/leopard/contrib/2.11/NCStats_0.1-4.tgz'
Content type 'application/x-gzip' length 237120 bytes (231 Kb)
opened URL
=================================================="
downloaded 231 Kb
tar: Failed to set default locale
The downloaded packages are in /var/folders/Qj/Qjps7xnxFcWdSHsJY3lo+k+++TI/-Tmp-//RtmpzNO8MM/downloaded_packages

Le-sigh. Anybody know how I can tell tar what locale I'm in, not that I understand why it needs that or why it can't just know it already ... I'm running OSX 10.6.4 and R 2.11.1 GUI 1.34 Leopard build 64-bit (5589).

+1  A: 

Try:

defaults write org.R-project.R force.LANG en_US.UTF-8

http://cran.r-project.org/bin/macosx/RMacOSX-FAQ.html#Internationalization-of-the-R_002eapp

Brandon Bertelsen
Thank you, that works. To be 100% clear, that command is copy pasted into the Terminal, not the R console, and then the R console needs to be restarted.
gakera