我一直在嘗試使用PostrgeSQL與我的Django的應用程序,但我才把下面的錯誤(在項目開始後,權當我只有以下文件:__init__.py
,manage.py
,settings.pyc
, urls.pyc
,__init__.pyc
,settings.py
,urls.py
)和我已經添加後的型號:Django和PostgreSQL的「沒有找到燈具」
python manage.py syncdb
Creating tables ...
Installing custom SQL ...
Installing indexes ...
No fixtures found.
我甚至不試圖加載裝置。 Psycopg2已安裝。這是我的settings.py的數據庫部分
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
# Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
'NAME': 'myapp_development',
# Or path to database file if using sqlite3.
'USER': 'foo', # Not used with sqlite3.
'PASSWORD': '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.
}
}
http://stackoverflow.com/questions/3328708/why-im-getting-no-fixtures-found-when-i-run-python-manage-py-syncdb-command ...我想這個這不是一個錯誤,它只是告訴你沒有固定裝置。 –