{
"target": "terminus_exec",
"cancel": "terminus_cancel_build",
"shell_cmd": "D:.python_venvsgeneral_pythonScriptspython.exe -u "$file"",
"file_regex": "^[ ]*File "(...*?)", line ([0-9]*)",
"selector": "source.python",
"env": {"PYTHONIOENCODING": "utf-8"},
"variants":
[
{
"name": "Syntax Check",
"shell_cmd": "D:.python_venvsgeneral_pythonScriptspython.exe -m py_compile "${file}"",
}
]
}
"""
Download sublime text from here
https://www.sublimetext.com/3
Write your python code inside sublime text editor
press Ctrl + B to execute the code
"""
{
"target": "terminus_exec",
"cancel": "terminus_cancel_build",
"shell_cmd": "/home/<user>/.python_venvs/general_python/Scripts/python -u "$file"",
"file_regex": "^[ ]*File "(...*?)", line ([0-9]*)",
"selector": "source.python",
"env": {"PYTHONIOENCODING": "utf-8"},
"variants":
[
{
"name": "Syntax Check",
"shell_cmd": "/home/<user>/.python_venvs/general_python/Scripts/python -m py_compile "${file}"",
}
]
}