I have recently installed python3. I created a new build system and named it Python3.sublime-build and added the below,
{
"cmd": ["python3", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python",
"encoding": "utf8",
"path": "/usr/local/Cellar/python3/3.5.1/bin/“
}
The path is where my python3 installation files are found.
But when i select python3 and use the build function i get the error
No build system
Python 2.7 works fine. How can i fix this ?
Thank you
/usr/local/bin?"path": "/usr/local/Cellar/python3/3.5.1/bin/“and changing the cmd entry frompythonto/usr/local/bin/python3seems to have resolved the issue. It works fine with the encoding included as well.