Solving “locale” issue in Ubuntu
Quick fix to solve the next issue:
perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:- List your locales to find out which one is missing, in my case it was LC_ALL
locale
2. Add the following to your ~/.zshrc file (if you’re using zsh /oh-my-zsh):
export LC_ALL="en_US.UTF-8"
Add any other “locale” missing.