Skip to content Skip to sidebar Skip to footer

Getting Nameerror With Django 1.5 And Ipython

I'm running Django 1.5.1, Python 2.7.2, and IPython 0.13.2. If I do 'python ./manage.py shell' from within my Django project directory, I get the following error: from django impo

Solution 1:

django 1.5 doesn't start IPython properly. This is fixed in master, but the fix was not backported to 1.5.1. If you manually apply that patch to core/management/commands/shell.py, IPython should work as expected.


Post a Comment for "Getting Nameerror With Django 1.5 And Ipython"