Reputation: 7823
I'm getting this warning:
perl: warning: Please check that your locale settings:
LANGUAGE = (unset),
LC_ALL = (unset),
LANG = "en_US.UTF-8"
are supported and installed on your system.
How can I fix this?
Upvotes: 0
Views: 354
Reputation: 368539
You need to set a locale, easiest may be adding
LANG=C
or
LANG=en_US
or whichever setting you like best in the file /etc/environment
.
This usually only happens in very bare server environments or chroot
s.
Upvotes: 1