A remote debugger wrapper around pdb that exposes the debugger on a TCP socket (default port 4444), allowing you to connect with telnet or netcat. Current version: 0.2.0. Infrequently maintained; last release 2021.
pip install rpdbVerified import paths — ran on the pinned version, not inferred.
Place rpdb.set_trace() in your code where you want to break. When the breakpoint is hit, rpdb listens on TCP port 4444. Connect using netcat or telnet to interact with the debugger.
Ensure only one process hits the breakpoint, or set RPDB_PORT environment variable to different ports per process.
Upgrade to Python 3.8+ or pin rpdb to <0.2.0.
Use rpdb only with the standard pdb, or consider alternatives like remote-pdb.
Run 'pip install rpdb'.
Ensure the script is running and hits the breakpoint. Check that no firewall blocks port 4444. Verify the port with 'ss -tlnp | grep 4444' or 'netstat -an | grep 4444'.
No dependency data recorded yet.