Pip install - locale.Error: unsupported locale setting
Setting your shell to use the universal C
locale can get you out of the pip install
locale trouble:
Try pip install
after applying the above quick fix. π
Locale Gloacale // Locale what? Exactly, read on
Locale settings, think of them like the settings on your phone, helps your systems and applications to communicate in the same language (think en_US.UTF-8
, fr_FR.UTF-8
, you get it). But, sometimes you just need that common "language", thatβs where C
comes into play π.
Permanent Locale Settings // ain't nobody got time for temporary settings
While the above quick fix will help temporarily, we need a permanent adjustment. For that, add the exports into your .bashrc
or equivalent:
Now you don't have to reconfigure it every time, try pip install
after the source outro:
Externally logged onto SSH sessions will now be less of a headache.
Locale configs // don't worry, it's not rocket science
We dive little deeper. Checking available and current locale settings can tell a whole lot of under the hood story.
In case sudo locale-gen en_US.UTF-8
, and sudo dpkg-reconfigure locales
can add en_US.UTF-8
to your locale wardrobe.
Python-Specific Locale Settings // Python says, "I have my own rules"
For Python 2.7, you can unset LC_ALL
:
But if you are using Python 3.4 and above, ensure your Python version and pip installation is as snug as a bug in a rug π.
Facing issues with virtualenv? Could be your locale setting conflicts within the environment.
It's not me, it's you // System and environment considerations
Your system like that party pooper friend might have a role to play in this whole drama as well.
OS Compatibility // Ketchup and ice cream, anyone?
Your server's operating system and Python might not go together like ketchup and fries but rather like ketchup and ice cream π¦. So ensure you have your compatibilities checked before a full serving of Python.
Locale settings over servers // Yes, they have feelings too
In a server environment it's important to define the locale:
Troubleshooting Bullseye // Eye on the problem, hands on the solution
Face it, you wouldn't be here if there weren't any issues right? Let's get to it.
In Python we trust // Python builtin locale configuration
Python's setlocale
is our trusted partner in crime here:
Checking /etc/locale.gen
comes handy too, you wouldn't want to swipe right on a locale profile that doesn't exist!
Locale-def, your flexible friend // just don't call it at 2 am
For those who love a bit of manual tweaking, localedef
is your friend.
Just remember to match the pattern of your locale definitions with setlocale()
expectations in Python, and you can have a happily ever after!
Was this article helpful?