I trying to setup DJango restframework in a windows machine and I get the following error when I run the code,
Steps done. 1.Downloaded rest-framework & other utilities from github 2.Using easy_install I installed all the packages.
Here is the confirmation msg,
C:\Python27\Scripts>easy_install django-rest Searching for django-rest Best match: django-rest 0.0.1 Processing django_rest-0.0.1-py2.7.egg django-rest 0.0.1 is already the active version in easy-install.pth
Using c:\python27\lib\site-packages\django_rest-0.0.1-py2.7.egg Processing dependencies for django-rest Finished processing dependencies for django-rest
Created a new project firstwebservice which created all the files.
Edited settings.py file and included django rest as given below,
INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.messages', 'django.contrib.staticfiles', 'rest_framework', # Uncomment the next line to enable the admin: # 'django.contrib.admin', # Uncomment the next line to enable admin documentation: # 'django.contrib.admindocs', )
- Ran the project
ERror:-No module named rest_framework...
Please provide your assistance
