[Answer]-Django 1.5 Management Command – IOError: [Errno 10] – No child processes

1👍

i believe that with django 1.5 you should change the arg BaseCommand to NoArgsCommand

retry it like this:

from django.core.management.base import NoArgsCommand
    class Command(NoArgsCommand):
       # whatever here 

that works for me .

Leave a comment