LoginSignup
5
6

More than 5 years have passed since last update.

Djangoのコマンド補完設定

Last updated at Posted at 2012-09-04
$ python manage.py 
$ django-admin.py

などをタブで補完する設定

$ 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

以下は .bashrc が読み込まれていなかったので設定追加。ちゃんと読み込まれるのであれば不要

$ vi ~/. bash_profile

~/.bash_profile
if [ -f ~/.bashrc ] ; then
        . ~/.bashrc
fi
5
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
6