I can't install the ipdb package because it's on a server over which I have no control. I want to make the following work.
import other.module.ipdb as ipdb
print 'hello'
ipdb.set_trace()
print 'world'
Ipython is installed which makes me think I should somehow be able to access the ipdb package. I know locally I did installed it by doing sudo apt-get install python-ipdb
but it seems that ipdb should already be available somehow.
Any ideas?
Thank you