0

我是 Django 的新手,请多多包涵。我遵循本教程并在通过修改settings.py. 我知道以前有人问过这个问题,但答案对我不起作用。

如下修改 settings.py 后,我运行python manage.py syncdb(and sudo python manage.py syncdb),但终端中没有任何反应。在我指定的路径中也没有创建 db 文件。

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
        'NAME': '/Users/philip/Documents/Developer/mysite/abc.db',                      # Or path to database file if using sqlite3.
        'USER': '',                      # Not used with sqlite3.
        'PASSWORD': '',                  # Not used with sqlite3.
        'HOST': '',                      # Set to empty string for localhost. Not used with sqlite3.
        'PORT': '',                      # Set to empty string for default. Not used with sqlite3.
    }
}
4

1 回答 1

0

I restart terminal and it just works.

于 2012-10-08T10:25:47.057 回答