Setting Your Locale in Ubuntu
When programming or even running certain applications, have you ever received these or similar error messages?
locale: Cannot set LC_CTYPE to default locale: No such file or directory locale: Cannot set LC_MESSAGES to default locale: No such file or directory Yea, I love the error too. 😏
Luckily, there’s a simple fix:
See which locale’s you have $ locale LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 LC_NUMERIC="en_US.UTF-8" LC_TIME="en_US.UTF-8" LC_COLLATE="en_US.UTF-8" LC_MONETARY="en_US.UTF-8" LC_MESSAGES="en_US.UTF-8" LC_PAPER="
[Read More]