CUCC Expedition Handbook

Handbook Troggle installing Django

When first installing Django, the first thing to test is that Django itself is OK. So run this command, and this is the output you should see.

$ django-admin

Type 'django-admin help ' for help on a specific subcommand.

Available subcommands:

[django]
    check
    compilemessages
    createcachetable
    dbshell
    diffsettings
    dumpdata
    flush
    inspectdb
    loaddata
    makemessages
    makemigrations
    migrate
    runserver
    sendtestemail
    shell
    showmigrations
    sqlflush
    sqlmigrate
    sqlsequencereset
    squashmigrations
    startapp
    startproject
    test
    testserver
    
Note that only Django core commands are listed as settings are not 
properly configured (error: Requested setting INSTALLED_APPS, but 
settings are not configured. You must either define the environment 
variable DJANGO_SETTINGS_MODULE or call settings.configure() before 
accessing settings.).

Return to: Troggle laptop
Troggle index: Index of all troggle documents