Please help me figure out how to get this connection. I have searched all over the web and have read discussions/articles and nothing seems to work. I have a Mac OS and I have updated to Python 3.9.1.
This is the code that I was given in my Python programming book I am following.
{
“cmd”: [“python3”, “-u”, “$file”],
}
I save it has python3.sublime-build and when I try command+b I get “no build system”
I have since found different code to enter, and none of that has helped either.
{
“cmd”: [“python3”, “-u”, “$file”],
“selector”: “source.python”,
“file_regex”: “^[ ]File "(…?)”, line ([0-9]*)"
}
From the terminal I have use the $ which python3 and get /usr/local/bin/python3, which I copy and put in the new build system
{
“cmd”: ["/usr/local/bin/python3", “-u”, “$file”],
“selector”: “source.python”,
“file_regex”: “^[ ]File "(…?)”, line ([0-9]*)"
}
Any help is much appreciated. Thank you. Newbie89