$ python manage.py
$ django-admin.py
Settings to complement etc. with tabs
$ wget https://raw.github.com/django/django/7515f6576b593c5f7a1ff2b2f934d5442b52b884/extras/django_bash_completion
$ mv django_bash_completion .django_bash_completion
$ vi ~/.bashrc
#### **`~/.bashrc`**
. ~/.django_bash_completion
The following is a setting added because .bashrc was not loaded. Not required if loaded properly
#### **`$ vi ~/. bash_profile `**
~/.bash_profile
if [ -f ~/.bashrc ] ; then
. ~/.bashrc
fi
Recommended Posts