I've created a python3.sublime-build:
{
  "path": "/usr/local/bin/python",
  "cmd": ["python3", "-u", "$file"],
  "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
  "selector": "source.python"
}
and $ which python3 returns,
/usr/local/bin/python3
likely installed with brew.
and Command + B returns this error:
[Errno 20] Not a directory
[cmd: ['python3', '-u', '/path/to/dir/filename.py']]
[dir: /path/to/dir]
[path: /usr/local/bin/python]
[Finished]
have looked into some relevant posts, and couldn't solve it.
How do I solve the problem?
 
     
    