How To Fix Python Error ValueError: unknown locale: UTF-8 on macOS
- Categories:
- python
When you running Python script on Mac OS, you may occurs Python error like this one:
Solution
Edit ~/.bash_profile
if you are using bash
or ~/.zshrc
for zsh
and add these lines.
In some case, you may need to set LC_CTYPE
.
Restart your terminal or computer or run this command to reload environment variables.
To make sure it was set, check with echo
command.
- Tags:
- #python
Recent Posts
How to Defend Against Brute-Force and DoS Attacks with Fail2ban, Nginx limit_req, and iptables
In this tutorial, I’ll explain how to protect your public-facing Linux server and Nginx web server from common threats, including brute-force and DoS attacks.
Is Getting AWS Solutions Architect Associate Certification Worth It?
If you are a full-time Software Engineer, there's no strong need to pursue this certification.
DevSecOps
My Notes about DevSecOps
AWS Secrets Manager
Explanation about AWS Secrets Manager with example code.
Envelope Encryption
Envelope encryption is the practice of encrypting plaintext data with a data key, and then encrypting the data key under another key.