230k views
3 votes
How to debug python script in linux terminal

1 Answer

1 vote

Final Answer:

To de-bug a Python script in the Linux terminal, you can use the built-in de-bug-ger module, pdb. Execute the script with the command python - m pdb script . py, set break-points with break, run the script with run, and use commands like step or continue to navigate through the code and inspect variables.

Step-by-step explanation:

De-bug-ging Python scripts in the Linux terminal can be achieved using the built-in Python De-bug-ger, pdb. To initiate de-bug-ging, run the script with the following command in the terminal:

python - m pdb script . py

This starts the script in de-bug mode. You can set break-points at specific lines using the break command, run the script using run, and navigate through the code using commands like step to move into functions or continue to proceed until the next break-point. Additionally, you can inspect variables, evaluate expressions, and gain insights into the script's execution flow.

User Akolade Adesanmi
by
7.2k points