How to get PyCharm to display unicode data in its

2020-04-04 23:44发布

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?

2条回答
该账号已被封号
2楼-- · 2020-04-05 00:23

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)

查看更多
聊天终结者
3楼-- · 2020-04-05 00:24

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

console font

查看更多
登录 后发表回答