Debugging python script executed in chroot environment
Is there a way to debug python script which is executed in开发者_StackOverflow社区side chroot by eclipse which is installed on my machine and chroot doesn't see it? I am not allowed to install eclipse inside chroot.
You could always use the python debugger. Docs for PDB This allows you to create breakpoints in your programs. Poke variables and also generally have a look at the internals.
精彩评论