I have installed Tesseract-OCR using the provided installer and added it to the path. I have also installed Pillow using pip through CMD. But when I attempt to import them into pycharm it says that the modules do not exist.
When I type 'tesseract' in CMD, it outputs the correct information, so I think I must be missing a step somewhere.
I am attempting to import them using the Following:
from PIL import Image
import pytesseract
Please help...