You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to run the barebones application with an empty Django prorject.
I followed the README.md instructions and I've got a .egg
I create a new Django project ( django-admin startproject xyz )
I move the .egg file to the app directory and add sys.path.append("django_quiz_app-0.5.1-py2.7.egg") to the manage.py (so that my Django app can see the required libs) and modify the settings.py and url.py (according to README.md instructions)
I start the project ( python manage.py runserver ) and it runs OK. However when I point my browser to 127.0.0.1/q , I get the following error:
Request Method: | GET
-- | --
http://127.0.0.1:8000/q/
1.6.5
OperationalError
no such table: quiz_quiz
/usr/local/lib/python2.7/site-packages/django/db/backends/sqlite3/base.py in execute, line 451
/usr/local/opt/python/bin/python2.7
Is there something I am doing wrong?
The text was updated successfully, but these errors were encountered:
Hello!
I am trying to run the barebones application with an empty Django prorject.
I followed the README.md instructions and I've got a .egg
I create a new Django project ( django-admin startproject xyz )
I move the .egg file to the app directory and add
sys.path.append("django_quiz_app-0.5.1-py2.7.egg")
to the manage.py (so that my Django app can see the required libs) and modify the settings.py and url.py (according to README.md instructions)I start the project (
python manage.py runserver
) and it runs OK. However when I point my browser to 127.0.0.1/q , I get the following error:Is there something I am doing wrong?
The text was updated successfully, but these errors were encountered: