Generally, you should be able to put any app/modul in the django folder and it should work.
However, there are a few things that need not be overlooked.
Make sure you don't overlook to edit the settings.py and the urls.py as instructed for each specific app
Do check if there are any dependencies. Some apps may require certain libraries that need to be installed such as imaging etc.
Some apps have more complicated process and need additional settings, files, and adjustments.
Specifically for Django registration 2 lines in settings.py:
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.sites',
'registration', # add this line!
)
ACCOUNT_ACTIVATION_DAYS = 7 # And this line! #One-week activation window; you may, of course, use a different value.
as well as in urls.py:
(r'^accounts/', include('registration.backends.default.urls')),
as for the invitation, its almost the same:
https://bitbucket.org/david/django-invitation/wiki/Home#basic-use
Good luck