I'm trying to import PIL with monkeyrunner
import re
import math
import os
from PIL import Image
from com.android.monkeyrunner import MonkeyRunner, MonkeyDevice
import commands
import sys
but I keep getting an error:
ImportError: No module named PIL
I know it is something with monkeyrunner because I can successfully import PIL when running a regular python script. I was reading around and maybe this had something to do with PYTHONPATH? I am not sure what I need to do to allow these other module imports with monkeyrunner.
I am running on windows.