I'm new to python and am not really sure how importing libraries works, but I understand that you are supposed to use "from PIL import Image" in order to import the Image module (is it even called a module???) and then use Image.open("filename") in order to open the Image, but I got a "No module named 'PIL'" error when I tried to import it from PIL. I then just did "import Image" which didn't raise any error flags but I still can't use Image.open without getting an "Undefined variable from import" error.
Any help is appreciated!