Django 1.6a1中没有collectstatic命令

Tom*_*sen 7 django

我已经在我的virtualenv中安装了django,如下所示:

git clone git://github.com/django/django.git django-trunk
pip install -e django-trunk/
Run Code Online (Sandbox Code Playgroud)

在我的设置文件中有这个:

INSTALLED_APPS = (
    'django.contrib.admin',
    'django.contrib.admindocs',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'django.contrib.sites',
    'django.contrib.flatpages',
    'south',
    'djcelery',
    'gunicorn',
    'sorl.thumbnail',
    'template_utils',
    'compressor',
    'tagging',
    'ckeditor',
    'mptt',
)


STATICFILES_FINDERS = (
    'django.contrib.staticfiles.finders.FileSystemFinder',
    'django.contrib.staticfiles.finders.AppDirectoriesFinder',
    'compressor.finders.CompressorFinder',
)
Run Code Online (Sandbox Code Playgroud)

当我尝试做的时候

python manage.py collectstatic
Run Code Online (Sandbox Code Playgroud)

我收到此错误:

Unknown command: 'collectstatic'
Run Code Online (Sandbox Code Playgroud)

如果我做

python manage.py --version
Run Code Online (Sandbox Code Playgroud)

我明白了

1.6a1
Run Code Online (Sandbox Code Playgroud)

为什么不收集静电?

编辑:

我跑的时候

python manage.py --help
Run Code Online (Sandbox Code Playgroud)

我明白了:

Usage: manage.py subcommand [options] [args]

Options:
  -v VERBOSITY, --verbosity=VERBOSITY
                        Verbosity level; 0=minimal output, 1=normal output,
                        2=verbose output, 3=very verbose output
  --settings=SETTINGS   The Python path to a settings module, e.g.
                        "myproject.settings.main". If this isn't provided, the
                        DJANGO_SETTINGS_MODULE environment variable will be
                        used.
  --pythonpath=PYTHONPATH
                        A directory to add to the Python path, e.g.
                        "/home/djangoprojects/myproject".
  --traceback           Raise on exception
  --version             show program's version number and exit
  -h, --help            show this help message and exit

Type 'manage.py help <subcommand>' for help on a specific subcommand.

Available subcommands:

[django]
    check
    cleanup
    compilemessages
    createcachetable
    dbshell
    diffsettings
    dumpdata
    flush
    inspectdb
    loaddata
    makemessages
    runfcgi
    runserver
    shell
    sql
    sqlall
    sqlclear
    sqlcustom
    sqldropindexes
    sqlflush
    sqlindexes
    sqlinitialdata
    sqlsequencereset
    startapp
    startproject
    syncdb
    test
    testserver
    validate
Run Code Online (Sandbox Code Playgroud)

geo*_*ock 8

Django可能正在加载错误的设置文件.有关详细信息,请参阅此问题:Django:无法运行自定义命令

尝试在settings.py文件顶部引发异常; 这将告诉您文件是否被加载.