I have an alternative build system set-up for my Python 3 project:
"build_systems": [
{
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"name": "Test Project Python Builder",
"selector": "source.python",
"shell_cmd": "~/.virtualenvs/test/bin/python3.5 -u \"$file\""
}
]
As you can see this one uses python3.5 interpreter from a virtual environment with all specific dependencies installed.
But Sublime Debugger plug-in seems to use the default python3 interpreter.
Is there a way to choose a specific "debugging" interpreter for each project?
Or add a functionality to utilize corresponding Build Systems' paths?
I have an alternative build system set-up for my Python 3 project:
As you can see this one uses
python3.5interpreter from a virtual environment with all specific dependencies installed.But Sublime Debugger plug-in seems to use the default
python3interpreter.Is there a way to choose a specific "debugging" interpreter for each project?
Or add a functionality to utilize corresponding Build Systems' paths?