Castro Roy
Castro Roy

Reputation: 7823

Perl locale warnings on Debian

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

Answers (1)

Dirk is no longer here
Dirk is no longer here

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

Upvotes: 1

Related Questions