We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to install django-nonrel with mongodb support, below installed packages
git+https://github.com/django-nonrel/[email protected] git+https://github.com/django-nonrel/djangotoolbox # v1.8.0 git+https://github.com/django-nonrel/mongodb-engine # v0.6.0 pymongo==3.1 mongoadmin==0.2 mongodbforms==0.3 mongoengine==0.10.0
and my settings file is as follow:
INSTALLED_APPS = ( # 'django.contrib.admin', # 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'djangotoolbox', )
and for db settings:
DATABASES = { 'default' : { 'ENGINE' : 'django_mongodb_engine', 'NAME' : 'mydb', 'HOST': 'mongo' } }
When I run manage.py syncdb, I got this error:
manage.py syncdb
NotImplementedError: subclasses of BaseDatabaseIntrospection may require a get_table_list() method
and if I run manage.py without specifying any command, I got:
manage.py
ImportError: No module named django
However django is installed and the pythonpath is properely configured
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm trying to install django-nonrel with mongodb support, below installed packages
and my settings file is as follow:
and for db settings:
When I run
manage.py syncdb
, I got this error:and if I run
manage.py
without specifying any command, I got:However django is installed and the pythonpath is properely configured
The text was updated successfully, but these errors were encountered: