When I create new startup configurations in Eclipse, it creates a startup command, such as:, python.exe -u manage.py runscript my_script.pyregardless of whether I try to execute a Python startup configuration or a Django startup configuration.
How do I get it to run python.exe manage.py runscript my_script.py? (no -u-switch).
I assumed that -u is what it breaks, since startup python.exe manage.py runscript my_script.pyworks fine with a simple old bash hint.
source
share