Installation

To install Django Country Kit, follow these steps:

  1. Install Django Country Kit using pip:

    pip install django-country-kit
    
  2. Add ‘django_country_kit’ to your INSTALLED_APPS in your Django project’s settings:

    INSTALLED_APPS = [
        # ...
        'django_country_kit',
        # ...
    ]
    
  3. Run collectstatic:

    python manage.py collectstatic