Home > Back-end >  How to remove hieroglyphs when connecting PostgreSQL
How to remove hieroglyphs when connecting PostgreSQL

Time:10-04

Connecting a PostgreSQL database to PyCharm writes with hieroglyphs. What to do? This is how it looks like: enter image description here

CodePudding user response:

psql uses the language from the locale in its environment. Change that to English, and you will have less trouble reading the messages. On a Linux system, you could set the LC_MESSAGES environment variable to C.

  • Related