Installation overview

Install requirements

A requirements file stores a list of dependencies to be installed for your project/application.

To get started with Django-country-dialcode you must have the following installed:

  • python >= 2.4 (programming language)
  • Apache / http server with WSGI modules
  • Django Framework >= 1.3 (Python based Web framework)

Install requirements

Use PIP to install the dependencies listed in the requirments file,:

$ pip install -r requirements.txt

Configuration

Add country_dialcode into INSTALLED_APPS in settings.py:

INSTALLED_APPS = (
    ...
    'country_dialcode',
    ...)

Run following commands:

python manage.py syncdb

Project Versions

Table Of Contents

Previous topic

Introduction

This Page