[Answer]-"ImportError: No module named 'tastypie'" when running "django-admin migrate"

1👍

Add tastypie to INSTALLED_APPS in your project’s settings.py file:

INSTALLED_APPS = (   
    ...   
    ...
    'tastypie',   
)

Leave a comment