Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to fix 'tar: Failed to set default locale' error?

Tags:

macos

r

tar

locale

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).

like image 417
gakera Avatar asked Oct 11 '10 15:10

gakera


3 Answers

Step 1 (In R Console)

system('defaults write org.R-project.R force.LANG en_US.UTF-8')

Step 2: Restart R

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

like image 147
Brandon Bertelsen Avatar answered Nov 12 '22 00:11

Brandon Bertelsen


Use this command in the R console:

system("defaults write org.R-project.R force.LANG en_US.UTF-8")

Remember to quit and start again R.

like image 23
IUF Avatar answered Nov 12 '22 00:11

IUF


refer: https://github.com/nerves-project/nerves/issues/376#issuecomment-456939623

If you don't want to permanently set env. variable. do:

$ export LANG=en_US.UTF-8
$ export LC_ALL=$LANG

No need to restart the system.

like image 6
Bharat Pahalwani Avatar answered Nov 11 '22 23:11

Bharat Pahalwani