, , TL; DR , Sublime Text 2 ( , exec).
Sublime, ( , ), Sublime Text 3 , Sublime 3 exec .
-, , , :
[ - utf-8]
Sublime, , Python. , , ( / ) env, , Python UTF-8 , , .
Sublime Text 2 Python 2.7.14 Windows 7. Python 3 PATH, C:\Python27-64, , .
PackageResourceViewer , Sublime .
script , , :
import sys
print(sys.version)
print("Café")
, Tools > Build System Automatic, Ctrl+B :
3.6.0 (v3.6.0:41df79263a11, Dec 23 2016, 08:06:12) [MSC v.1900 64 bit (AMD64)]
[Decode error - output not utf-8]
[Finished in 0.1s]
, , , Python 3 , Python 2 , Python 3.
Python.sublime-build:
{
"cmd": ["python", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python"
}
PackgeResourceViewer, , Python 2:
{
"cmd": ["C:\\Python27-64\\python.exe", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python"
}
:
2.7.14 (v2.7.14:84471935ed, Sep 16 2017, 20:25:58) [MSC v.1500 64 bit (AMD64)]
Café
[Finished in 0.1s]
, Python 2, , .
, , , , , . , sys.version:
import sys
print("Café")
:
[Decode error - output not utf-8]
[Decode error - output not utf-8]
[Finished in 0.1s]
, , , :
import sys
print("Café au lait")
, :
Café au lait
[Finished in 0.1s]
, exec, Sublime Text Default. , , , , .
, Sublime Text 3 exec, ( ) , , .
exec Sublime 2, , , , .
public gist, exec.py, exec, .
, ( ) , , , env , Python UTF-8, .