Created
June 8, 2015 04:13
-
-
Save kxxoling/b3ac181b427c7cafbe88 to your computer and use it in GitHub Desktop.
perl: warning: Falling back to the standard locale ("C").
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
perl: warning: Setting locale failed. | |
perl: warning: Please check that your locale settings: | |
LANGUAGE = (unset), | |
LC_ALL = (unset), | |
LANG = "en_US.utf8" | |
are supported and installed on your system. | |
perl: warning: Falling back to the standard locale ("C"). |
sudo apt install locales-all
- add this to /etc/environment
LANGUAGE=en_US.UTF-8
LC_ALL=en_US.UTF-8
LANG=en_US.UTF-8
LC_CTYPE=en_US.UTF-8
reload, if not work run this:
locale-gen en_US.UTF-8
dpkg-reconfigure locales
you can try this
export LC_ALL=C
after that run this again
locale-gen en_US.UTF-8
export LANGUAGE=en_US.UTF-8
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
locale-gen en_US.UTF-8
dpkg-reconfigure locales
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
8 years later... WTF!!!