I have a Python script (running Python v2.6 or v2.7) that runs on Linux and also AIX.

I'd like to be able to debug this script from Windows. I'd like to use PyScripter if possible.

If it is not possible to use PyScripter, what other combination of IDE + debugger would you recommend? I would prefer something easy to set up and get running quickly without a huge amount of tinkering.

share|improve this question

1 Answer

up vote 1 down vote accepted

Currently it is not possible to debug a script on a remote machine from PyScripter. This is a planned feature thought. You may be able to use winpdb.

share|improve this answer
Thanks! Any ideas on how to set up winpdb? – Kevin P. Nov 9 '10 at 1:47
I got this working today - I debugged a script running on AIX (IBM's Unix) from WinPDB running on Windows. Yay! It required a small script modification but was easy to do. The link is here: winpdb.org/docs/embedded-debugging Note that rpdb2 is not a part of standard python and will need to be installed separately. You can place rpdb2.py in the same directory as your script and it should work. – Kevin P. Nov 16 '10 at 0:36

Your Answer

 
or
required, but never shown
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.