Ich installierte und konfigurierte eine Django/MongoDB wie diese Weise!Fehler war: Kein Modul namens django_mongodb_engine.base
installieren pip virtualenv
Quelle myproject/bin/aktivieren
hg + https installieren Pip: //bitbucket.org/wkornewald/django-nonrel
hg + https installieren Pip: //bitbucket.org/wkornewald/djangotoolbox
pip git + https installieren: //github.com/django-nonrel/mongodb-engine
Alle diese Operationen sind erfolgreich!
jetzt, wenn ich die Datei settings.py wie auf diese Weise geändert:
DATABASES = {
'default': {
'ENGINE': 'django_mongodb_engine', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
'NAME': 'mong_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.
}
Der knifflige Fehler tritt auf:
Error was: No module named django_mongodb_engine.base
Offensichtlich die django_mongodb_engine erfolgreich installiert. aber warum wird dieser Fehler angezeigt?
BTW, Verzeihen Sie mein schlechtes Englisch!