标签:editing properly mod size top end parse rms JetBrains
IDE Encoding
和project Encoding
(推荐都设置成utf-8)PyCharm creates files using the IDE encoding defined in the File Encodings page of the Settings dialog, which can be either system default, or the one selected from list of available encodings. Output in the consoles is also treated in this encoding.
It is possible that encoding used in the console output is different from the IDE default. To have PyCharm properly parse text in the console, you have to do some additional editing.
Open for editing PYCHARM_HOME/bin/pycharm.exe.vmoptions
orPYCHARM_HOME/bin/pycharm.vmoptions
-Dconsole.encoding=<encoding name>
-Dconsole.encoding=UTF-8
Info.plist
located in /应用程序/PyCharm/Contents/, locate the tag <key>VMOptions</key>
, and modify it as follows:
<key>VMOptions</key>
<string>-Xms16m -Xmx512m -XX:MaxPermSize=120m
-Xbootclasspath/p:../lib/boot.jar -ea
-Dconsole.encoding=<encoding name>
</string>
标签:editing properly mod size top end parse rms JetBrains
原文地址:https://www.cnblogs.com/wx2017/p/9044395.html