Skip to content

Installation

Requirements

Install

pip install django-traduire

Ships with the free Google backend, which needs no key, no billing account and no extra dependency.

pip install django-traduire[deepl]
pip install django-traduire[google]
pip install django-traduire[openai]
pip install django-traduire[all]

Add to INSTALLED_APPS

INSTALLED_APPS = [
    ...
    "modeltranslation",
    "django_traduire",
    ...
]

Note

modeltranslation must be listed before django_traduire in INSTALLED_APPS.