Django compilemessages. Error: sh: msgfmt: command not found 错误


在mac下使用django,在使用如下命令时:

./manage.py compilemessages

系统报错:

sh: msgfmt: command not found

我用的是Mac OS 10.10,请问该如何解决?

经验 django msgfmt

asukahe 9 years, 7 months ago

你需要 GNU gettext 和 gettext-tools.

如果你使用的是brew:

brew install gettext
brew link gettext --force

如果你使用的是fink:

sudo fink install gettext-tools

如果你的PATH中没有/sw/bin/,请注意添加上。

唤潮鲛姬娜美 answered 9 years, 7 months ago

Your Answer