Atom Script 运行Python 不能输出中文的问题

  • Atom 1.3.2
  • python 2.7.10
  • 系统:win7

python code:

#!/usr/bin/python
# -*- coding: utf-8 -*-
print ("测试")

使用ctrl+shift+b运行代码结果为

settings 已配置字体为 Monospaced

style.less

.tree-view {
  font-size: 18px
}
// style the background and foreground colors on the atom-text-editor-element
// itself
atom-text-editor {
  font-family:Droid Sans Mono, Droid Sans Fallback;
}
// To style other content in the text editor's shadow DOM, use the ::shadow
// expression
atom-text-editor::shadow .cursor {
}
html, body, .tree-view, .tab-bar .tab,.bottom{
  font-family:Droid Sans Mono, Droid Sans Fallback;
}
.terminal {
  font-size:12px;
  font-family: Droid Sans Mono, Droid Sans Fallback;
}
.markdown-preview {
  h1,h2,h3,h4,h5,h6 {
    font-family: Droid Sans Mono, Droid Sans Fallback;
  }
}

把这行删除了就行了,我也碰到了

我也遇到了你的问题,不知道你是否解决了呢?希望能够回复一下