How to correct locale settings?
Posted: 24. Nov 2015, 01:23
I am getting this locale warning from perl:
Following commands did not help:
It only replaced (unset) with "en_US" in above error.
How can I correct this? Thanks.
Code: Select all
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
LANGUAGE = (unset),
LC_ALL = (unset),
LC_COLLATE = "C",
LANG = "en_US"
are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
Code: Select all
export LANGUAGE="en_US"
export LC_ALL="en_US"
How can I correct this? Thanks.