Common Ipython Problems

I like iPython so many functions, magic functions.

I recently updated to the latest version 0.10. But I have to face common problems:

  • %hist

    one of the most commonly used magic functions does not exist.
  • dreload

    doesn't seem to work (only works for modules?).
  • run -d

    for debugging doesn't work
  • Occasionally typed characters are not displayed on the console *
  • By default, even? and?? does not work. I had to hack a job for this *

* The last 2 problems are true for previous versions as well.

I am on Ubuntu 9.04 with Python 2.6.2 and IPython 0.10

+2


source to share


1 answer


sounds like a problem with your particular setup.? and?? always worked on my machine, gist is still a magic function, and dreload always only worked for modules - what else could it do?



as for the debug thing, this is a known issue with python 2.6: https://bugs.launchpad.net/ipython/+bug/381069

+1


source







All Articles