ChatGPT解决这个技术问题 Extra ChatGPT

In OS X Lion, LANG is not set to UTF-8, how to fix it?

I try to setup postgress in OS X Lion, and find that is not correctly setup the LOCALE environment var.

This is what is set:

LANG=
LC_COLLATE="C"
LC_CTYPE="C"
LC_MESSAGES="C"
LC_MONETARY="C"
LC_NUMERIC="C"
LC_TIME="C"
LC_ALL=

I expect something with UTF-8. This is a clean OS X Lion setup, with spanish language. I don't move anything.

I don't know how setup it to UTF-8.

In the terminal settings, is check UTF-8 and set LOCALE in open, despite that don't work.

That's odd. It should work in Terminal by default, assuming you're using the default shell (bash) and the default terminal settings profile (Basic). Note that if you alter the encoding or change "set locale environment variables" they only take effect in new terminals, not ones that are already open.
I use zsh (using oh my zsh! installer), maybe is that?
Possibly. Try running zsh without any custom configuration to see if the problem goes away. Use Shell > New Command to run zsh --no-rcs and zsh --no-rcs --no-global-rcs to narrow down the problem. Also, try just running the locale command without a shell via New Command and see what it reports.
@ChrisPage I had the exact same output as the OP, with those settings enables in the Terminal. I had to switch set locale environment variables off, restart the terminal and then switch it back on to get the right environment to show up.
There is a thorough answer to this question on Ask Different.

s
saurabh

I noticed the exact same issue when logging onto servers running Red Hat from an OSX Lion machine.

Try adding or editing the ~/.profile file for it to correctly export your locale settings upon initiating a new session.

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

These two lines added to the file should suffice to set the locale [replace en_US for your desired locale, and check beforehand that it is indeed installed on your system (locale -a)].

After that, you can start a new session and check using locale:

$ locale

The following should be the output:

LANG="en_US.UTF-8"  
LC_COLLATE="en_US.UTF-8"  
LC_CTYPE="en_US.UTF-8"  
LC_MESSAGES="en_US.UTF-8"  
LC_MONETARY="en_US.UTF-8"  
LC_NUMERIC="en_US.UTF-8"  
LC_TIME="en_US.UTF-8"  
LC_ALL="en_US.UTF-8"  

Also, I originally noticed the issue while using iTerm2. This workaround seems to work for both iTerm2 and Terminal.
Spent an hour looking a solution for this matter thanks a lot for posting this man. I can confirm it works on both Terminal and iTerm2.
I have a .bash_profile on my home folder and .profile was not being sourced when .bash_profile was present. I needed to manually source .profile inside .bash_profile
Amazing, that did it, just a note, once you use zsh, don't be dumb as me... the config there is ~/.zshrc... well now works like a charm
There is no reason to set both LANG and LC_ALL. Only LANG should be set. First, they both do the same - set default values for all locale variables (e.g. LC_TIME, LANGUAGE) - with LC_ALL having precedence over LANG. LANG is the one meant to be used in standard configuration, while LC_ALL is only for debugging purposes (as it overwrites everything else). Some reference
F
FredericK

I recently had the same issue on OS X Sierra with bash shell, and thanks to answers above I only had to edit the file

~/.bash_profile 

and append those lines

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

It really help. I don't have bash_profile and I have create it manually. And without put export to bash_profile, every time we reset terminal the language will rollback.
M
Marcel Kraan

This is a headbreaker for a long time. I see now it's OSX.. i change it system-wide and it works perfect

When i add this the LANG in Centos6 and Fedora is also my preferred LANG. You can also "uncheck" export or set locale in terminal settings (OSX) /etc/profile

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


t
tostao

if you have zsh installed you can also update ~/.zprofile with

if [[ -z "$LC_ALL" ]]; then
  export LC_ALL='en_US.UTF-8'
fi

and check the output using the locale cmd as show above

❯ locale                                                                                                                                           
LANG="en_US.UTF-8"
LC_COLLATE="en_US.UTF-8"
LC_CTYPE="en_US.UTF-8"
LC_MESSAGES="en_US.UTF-8"
LC_MONETARY="en_US.UTF-8"
LC_NUMERIC="en_US.UTF-8"
LC_TIME="en_US.UTF-8"
LC_ALL="en_US.UTF-8"

J
Jayprakash Dubey

I had this issue with MacOS High Sierria.

https://i.stack.imgur.com/qaOhb.png

You can set up locale as well as language to UTF-8 format using below command :

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

https://i.stack.imgur.com/OqTq8.png

Now in order to check whether locale environment is updated use below command :

Locale

https://i.stack.imgur.com/Pjtar.png


How is this answer different comparing to the accepted one?
What is the purpose of the first pic? Isn't it the same as the last one?
N
Niklas Rosencrantz
if [[ -z "$LC_ALL" ]]; then
  export LC_ALL='en_US.UTF-8'
fi

then check for locale, output should be :

LANG="en_US.UTF-8"
LC_COLLATE="en_US.UTF-8"
LC_CTYPE="en_US.UTF-8"
LC_MESSAGES="en_US.UTF-8"
LC_MONETARY="en_US.UTF-8"
LC_NUMERIC="en_US.UTF-8"
LC_TIME="en_US.UTF-8"
LC_ALL="en_US.UTF-8"

关注公众号,不定期副业成功案例分享
Follow WeChat

Success story sharing

Want to stay one step ahead of the latest teleworks?

Subscribe Now