I want to write Python programs in Sublime but need to be able to utilize the input() command which doesn’t seem possible with base Sublime.
I read this: Build broken? - Python 3 - input()
which led me to try to learn how to use Terminus to accept user inputs.
I am trying to make a new build system that uses Terminus to do this.
The text I have written in my build system is:
{
“target”: “terminus_open”,
“cmd”: [“python”, “-u”, “$file”],
“auto_close”: false,“selector”: “source.python3”,
}
but the majority of it gets highlighted in red and when I save and use it, nothing happens.
Can anyone help me out?
I fear it might have something to do with my Python being installed on an external hard drive, so I normally have to specify the path to it, but I don’t know where to put that in this text because I don’t really understand how the whole build system thing works (despite watching tutorials)
Thanks