I installed ipdb using pip
, but I am still getting
ImportError: No module named ipdb
.
Do I have to do something else to bring this module in? Of course, I import ipdb
at the top of my file as well. My thinking is this: I have Python 2.7 and Python 3 installed. Pip installed ipdb
to the Python 2.7 directory, but the Python module I am running is using Python 3. I think this is the issue, but how can I resolve it, so that ipdb
can be used with my Python 3 module? Thanks!