Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get PyCharm to display unicode data in its console?

I have switched over to PyCharm and have had a blast using it. I code for projects that use languages other than English (i.e. Hebrew and Arabic) and need to debug encodings once in a while. For some reason, PyCharm will not display Unicode characters in its debug console.

I have set the IDE encoding to UTF-8 but it did not help.

Any ideas?

like image 328
Agam Rafaeli Avatar asked Jan 07 '13 01:01

Agam Rafaeli


2 Answers

The accepted answer is no longer correct. Of the default fonts, none of them make a difference. I just spent awhile going through this same problem and the best solution is to modify your .bash_profile (or .zshrc) and include the line:

export PYTHONIOENCODING=UTF-8

In theory, you could also add this to your Environment Variables which you can set from within Preferences->Build,Execution,Deployment->Python Console This approach, however, seems to be broken in the build I am using (4.0.4)

like image 130
ebrious Avatar answered Oct 04 '22 11:10

ebrious


You need to change the console font to the one which contains the required Unicode glyphs:

console font

like image 43
CrazyCoder Avatar answered Oct 04 '22 11:10

CrazyCoder