Permission denied in Django makemessages
问题 I'm trying to add i8n into a Django app, but when I execute: (venv) user@machine:~/path/to/repo$ django-admin makemessages -l es The next error is thrown: PermissionError: [Errno 13] Permission denied: './venv/lib/python3.5/site-packages/Jinja2-2.9.5.dist-info/LICENSE.txt.py' But if I use it with manage.py instead of django-admin it works correctly. In django documentation they recommend to use django-admin. Any ideas? 回答1: Django's doc does not really "recommand" to use django-admin instead