Closed bobslee closed 2 years ago
PUDB_TTY=/dev/pts/0 pudb3 .venv/bin/python ./my-script.py
What's that .venv/bin/python
doing there? Pudb will try to read that like a script.
If you want to run pudb from a specific python, you should use ./venv/bin/python -m pudb my_script.py
.
Ok thanks!
Describe the bug When debugging from a separate terminal, upon starting the debugger the following error (and traceback) occurs.
Traceback error
To Reproduce Steps to reproduce the behavior:
PUDB_TTY=/dev/pts/0 pudb3 .venv/bin/python ./my-script.py
Expected behavior A debugger without the error.
Screenshot
Versions