There are two Django packages with the same option that I must add to the settings:
Add "captcha" to the INSTALLED_APPS in your settings.py
But it is not possible to add "captcha"
to the settings two times because I will get the next error:
django.core.exceptions.ImproperlyConfigured: Application labels aren't unique, duplicates: captcha
So how can I use two packages with the same name in my Django project?
PS: Please do not confuse "packages" and Django "apps". It described in official documentation about using apps with the same name, but there is nothing about packages.