How do I set the command run tool for a second environment of python in Komodo Edit?
By default the windows environmentals guide Komodo to X:\\folder1\\Anaconda\\py
It was quite cumbersome to find a fitting short-cut solution (keeping it in the python3 environments) but if you don't use python version 2.x any longer and haven't installed it; the following can be done:
Thereafter you can create a new ktf-file with:
komodo.doCommand('cmd_saveAll');
ko.run.output.kill(-1);
setTimeout(function(){
ko.run.runEncodedCommand(window, '%(python) \"%F\" {\'cwd\': u\'%D\'}');
}, 100);
... now keep in mind to use the '%(python)
instead of '%(python3)
... voila and you're done...