In Python under Windows: I want to run some code in a separate process. And I don\'t want the parent waiting for it to end. Tried this:
from multiprocessing impo
Under Linux you could fork but this won't work on Windows. I think the easiest way is to run a new Python process, by putting your count_sheeps in a seperate file and Popen('python count_sheeps.py')
fork
count_sheeps
Popen('python count_sheeps.py')