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.
Asked
Active
Viewed 989 times
3 Answers
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
-
The question was just two lines long and contained “uninstall IPython is not an option”. – Jens-Erik Weber Apr 26 '21 at 19:07