I installed ipdb using pip but i still get
ImportError: No module named ipdb .
Do I need to do something to bring this module? Of course, I import ipdb at the top of my file. My thinking is this: I have Python 2.7 and Python 3 installed. Pip installed ipdb in the Python 2.7 directory, but the Python module that I run uses Python 3. I think this is a problem, but how can I solve it, so ipdb can be used with my python 3 module? Thanks!
source share