5

If it is a multi-user environment and uninstall IPython is not an option, how would you go about launching a Django shell without IPython.

Dax
  • 369
  • 2
  • 7

3 Answers3

5

Passing --plain will tell Django to not look for IPython.

Ignacio Vazquez-Abrams
  • 776,304
  • 153
  • 1,341
  • 1,358
5

As of Django 1.10 the --plain flag is deprecated, instead you should use -i flag to choose from available interactive shells {ipython,bpython,python}

./manage.py shell -i python
Amin Hemati Nik
  • 477
  • 6
  • 15
0

you can uninstall ipython from the project virtualenv, that all you need

Alwerdani
  • 111
  • 1
  • 1
  • 8