views:

126

answers:

1

Trying to add django-registration to my app. I have installed setup tools to use easy_install. I think that works..

I run easy_install django-registation and a cmd prompt window flashes up, does something and closes. I don't think it's an error. But when I look in my app folder, theres nothing relation to django-registration.

Anyone know what is wrong? And where should the django-registration files appear?

(Also tried it with django-profiles and it was exactly the same)

+4  A: 

Django-registration will be installed on your python path, not in the project itself. You can see if it installed correctly by entering your python prompt and running:

>>>import registration

If you don't get an error it is working and installed. Just add 'registration' to your INSTALLED_APPS.

thornomad