Hi
I just downloaded Python 3.3.4 and sublime 3. When I’m going to tools–>build system I can only find Python and a couple of other languages, but not python 3. But when I run a simple program like “hello world” it works so maybe it doesn’t matter if I use Python or Python 3?
I’m following a beginners book and it says:
"To use Sublime Text with Python 3, click on Tools — Build System — New Build System and paste the following into the new file:
For Windows users:
{
“cmd”: “C:\python33\python.exe”, “-u”, “$file”],
“file_regex”: “^ ]File "(…?)”, line ([0-9]*)",
“selector”: “source.python”,
“encoding”: “utf8”,
“path”: “C:\Python33”
}
and save the file as Python3.sublime-build.Note that you will have to change the cmd and path in the above configuration as per your system’s installation. When you create a new file and want to run using Sublime Text, make sure you first save the file with a .py extension, for example, hello.py. When you open or create a new Python file, be sure to select Tools — Build System — Python3. After that, you should be able to use Tools — Build to run your Python file within Sublime Text."
The thing is I don’t really understand what he means when he writes that I have to change the cmd and path according to my settings? And also when i press
“New Build System” it is already a text there like this:
{
“shell_cmd”: “make”
}
In the book he doesn’t say if you should erase that text or paste the new text inside that text? I’m confused, please help!