IBM Project Created By, Harsh Patel
django-model-utils
Pillow
-
Install virtualEvn using pip install virtualenv
-
Make virtualEvn using virtualenv
-
Download oequiz.zip and unzip it.
-
Use
pip install -r requirement.txtto install necessary package for requirement.txt -
Go to your CMD and run
django-admin startproject Online Exam. -
Add
'quiz', 'multichoice', 'true_false', 'essay'to yourINSTALLED_APPSinsetting.pyFile.INSTALLED_APPS = ( ... 'quiz', 'multichoice', 'true_false', 'essay', ... )
-
Add the following to your projects
urls.pyfile, substitutingqfor whatever you want the quiz base url to be.urlpatterns = patterns('', ... url(r'^q/', include('quiz.urls')), ... )