./manage.py compilemessages
throws this error:
sh: msgfmt: command not found
I am running Mac OS 10.7, and I can’t find the download path for the msgfmt program. Is there any way to resolve this problem?
Thanks in advance!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
[update] TLDR; as Dogukan commented: Mac OS Maverics
brew install gettext; brew link gettext --forceworked for me.[update] user Lajarre reported: as of today (March 2014), I had to do
brew install msgpack.You need GNU gettext and gettext-tools.
If you use fink, try:
You may need to add
/sw/bin/to your PATH if it is not there yet.If you don’t use fink, try brew:
[update] removed sudo call from the brew example as suggested by Dave and Jason.