Manish Kumar
Manish Kumar

Reputation: 385

PILKit was unable to import the Python Imaging Library

I am getting following error:

raise ImportError('PILKit was unable to import the Python Imaging Library. Please confirm it's installed and available on your current Python path.') ImportError: PILKit was unable to import the Python Imaging Library. Please confirm it's installed and available on your current Python path.

Upvotes: 6

Views: 6110

Answers (1)

Vlad Strelnikov
Vlad Strelnikov

Reputation: 151

You have to install PIL or pillow, try: pip install pillow

Upvotes: 9

Related Questions