Command-Line Python Debugging with pdb
Вставка
- Опубліковано 4 лют 2025
- In this video, we learn how to debug Python code in the command-line, which is especially useful for those of you, who prefer a lightweight coding setup.
◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾
📚 Programming Books & Merch 📚
🐍 The Python Bible Book: www.neuralnine...
💻 The Algorithm Bible Book: www.neuralnine...
👕 Programming Merch: www.neuralnine...
🌐 Social Media & Contact 🌐
📱 Website: www.neuralnine...
📷 Instagram: / neuralnine
🐦 Twitter: / neuralnine
🤵 LinkedIn: / neuralnine
📁 GitHub: github.com/Neu...
🎙 Discord: / discord
🎵 Outro Music From: www.bensound.com/
also it's good to know that you can use every or almost every pdb command by its 1st letter and for print you can just type the variable name like in interactive mode of python interpreter
can't use c for clear, because c means continue.
Beautiful explanation Brother!
Lucky to have this good explanation. Thanks brother
starts at 3:55
Thanks - very useful as usual !
How effective is PDB for codebases with hundreds of files, and you're not just debugging the "main.py" with a basic example? What if the error I want to debug is within a different file. And how can I save breakpoints so I can re-run PDB again using the same breakpoints? Is there a way to do it without cluttering the code with "breakpoint()" statements?
that's what i was looking for. Thanks
Super. Subscribed. You are on the ball
Can the execution line be designated/highlighted in some fashion?
Is it usable in big project with lot of imports?
Thanks
👍Thanks.
⭐⭐⭐⭐⭐
Hi Need some help:
I have a python executable say prog1.exe...
I want to debug this executable using pdb ... How to do it ?
or any other way ?
You won't be able to use the Python Debugger (pdb) to debug a .exe file. This file type is a Windows executable file and is not a python file.
You are right@@Baseballchampion .. However I am asking about the python executable file created by using PyInstaller library.
♥️♥️♥️♥️♥️
❤
Jazlyn Mission
2nd
Thanks