Skip to content

Instantly share code, notes, and snippets.

@goutham2027
Last active March 25, 2016 09:55
Show Gist options
  • Save goutham2027/85677c34b37eb39137e4 to your computer and use it in GitHub Desktop.
Save goutham2027/85677c34b37eb39137e4 to your computer and use it in GitHub Desktop.
Settingup django dev environment

Django default shell is boring. To make it interactive we need ipython and shell_plus. shell_plus does auto imports.

pip install ipython
pip install django_extensions

Update in settings.py file

INSTALLED_APPS = [
....
....
....
'django_extensions',

]

To start Django shell

python manage.py shell_plus
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment