1. 程式人生 > >mac的sublime text3的python3環境無法輸出中文

mac的sublime text3的python3環境無法輸出中文

Launchpad中進入其他,選擇其中的“終端”


輸入which python3,目的是得到python3的路徑


如圖所示。

然後在sublime text3中選擇Tools-->Build System-->New Build System(最下面一個)


輸入如下內容,其中cmd中的第一個引號內替換成自己剛才終端得到的路徑

{
"cmd": ["/Library/Frameworks/Python.framework/Versions/3.6/bin/python3","-u","$file"],
"file_regex": "^[ ]File \"(...?)\", line ([0-9]*)",
"selector": "source.python",
"env": {"PYTHONIOENCODING": "utf8"},
}


儲存成python3.sublime-build即可

參考:http://blog.csdn.net/z5fn1v13/article/details/54946147