Debugging with ipython and ipdb
This is copy of Debugging with ipython and ipdb.
which easy_install
print 'Hello World!' my_var = 10 / 3 import ipdb; ipdb.set_trace() # BREAKPOINT print my_var
python my_project.py