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

风格不统一 提交于 2019-12-30 18:32:10

问题


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?


回答1:


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




回答2:


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)



来源:https://stackoverflow.com/questions/14188655/how-to-get-pycharm-to-display-unicode-data-in-its-console

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!