Created
October 10, 2025 10:07
-
-
Save patte/83137a168f9991d2c79b7151c7105fbe to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# fix for: | |
# perl: warning: Setting locale failed. | |
# perl: warning: Please check that your locale settings: | |
# LANGUAGE = (unset), | |
# LC_ALL = (unset), | |
# LC_CTYPE = "UTF-8", | |
# LANG = "C.UTF-8" | |
# are supported and installed on your system. | |
# perl: warning: Falling back to a fallback locale ("C.UTF-8"). | |
sudo locale-gen en_US.UTF-8 | |
unset LC_CTYPE | |
unset LC_ALL | |
unset LANGUAGE | |
export LANG=en_US.UTF-8 | |
locale | |
sudo update-locale LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment