How to use Django Command Extensions with the new Eclipse / Pydev launch configuration

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.

+5
source share
1 answer

Try running "run → run ..." and then edit the arguments.

http://www.cs.colostate.edu/helpdocs/cmd.pdf

0

All Articles