Issue
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.
Solution
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
Answered By - Amin Hemati Nik
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.