If you are installing using the .spec file, you can add PIL._tkinter_finder as a hidden import:
PIL._tkinter_finder
a = Analysis( ... hiddenimports=['PIL._tkinter_finder'], )
That solved the issue for me.