I am having trouble getting python scripts to run as part of a make process. I can run the same scripts fine from the cygwin shell. In the makefile I have tried;

./Create.py
tcsh -c 'Create.py'
python Create.py
/cygdrive/c/python26/python Create.py

all of these attempts do run the script but result in failure to find any packages ie

ImportError: No module named os

I...