zoukankan      html  css  js  c++  java
  • sublime text3输出窗口中文显示乱码问题解决方案

    1 前言

    2 方案

    修改Python3.sublime-build内容为

    {
    "cmd": ["C:/Users/Administrator/AppData/Local/Programs/Python/Python37/python.exe","-u","$file"],
    "file_regex": "^[ ]*File "(...*?)", line ([0-9]*)",
    "selector": "source.python",
    "encoding": "cp936"
    }
    

     说明:主要是添加"encoding":"cp936"就可以。

    之前输出:

    修改后输出:

    3 参考

    https://www.jianshu.com/p/a0c8e8f22467

  • 相关阅读:
    2019年计划书单
    redis 分布式锁实现
    filter-grok,dissect匹配数据
    nohup-长期运行进程
    filter
    kill
    watch
    free
    jar
    tree
  • 原文地址:https://www.cnblogs.com/fanbi/p/10677399.html
Copyright © 2011-2022 走看看