Commanderror: Can't Find Xgettext. With Django I18n
I have building a simple application with django in which I am using I18N. But when I tried to run following command, D:\work\i18n\testapp>django-admin.py makemessages -l en I
Solution 1:
You have to install gettext package.
For windows you can download from GetText for Windows
If you are using CentOS then run the command yum install gettext, and for Ubuntu users the command is sudo apt-get install -y gettext
Post a Comment for "Commanderror: Can't Find Xgettext. With Django I18n"