Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ImportError: No module named 'ipdb'

Tags:

I'm new to python and I'm trying to use the interactive python debugger in the standard python package. Whenever I run "import ipdb" in my text editor (atom) or in the command line through iPython then I get the error: ImportError: No module named 'ipdb'

Where is my ipdb module? It's still missing after I reinstalled python.

Thanks!

like image 843
Erin Wolpert Avatar asked Jan 15 '16 03:01

Erin Wolpert


1 Answers

pdb is built-in. ipdb you will have to install.

pip install ipdb 
like image 141
wim Avatar answered Nov 12 '22 22:11

wim