Whenever I build (Cmd+B) on Sublime Text 3 it doesn't execute my code.
I used Shift+Command+B to set the build system to Python. I also tried making my own build system by using the which python3.6 command in terminal, which said /Library/Frameworks/Python.framework/Versions/3.6/bin/python3.6
I put in this in my custom build system
{
"cmd": ["python", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python"
}
However I still get the same error. Please help.
I know this is a really stupid question, I'm sure I just have to change some settings to solve this, thanks for you time.
