Question

Is there a way to use manage.py from another directory to create makemessages for an installed_app?

├── common
│   ├── common
│   │   ├── tracking
│   │   │   ├── locale
├── car
│   ├── interfaces
│   │   ├── control
│   │   │   ├── manage.py
Was it helpful?

Solution

You can access it from directory bellow like this:

python ../manage.py makemessages

if it is two directories bellow:

python ../../manage.py makemessages
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top