View Single Post
Old 12-02-2020, 07:54 AM   #3
Doitsu
Grand Sorcerer
Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.
 
Doitsu's Avatar
 
Posts: 5,737
Karma: 24031401
Join Date: Dec 2010
Device: Kindle PW2
Quote:
Originally Posted by Gandulf View Post
Installed the test plugin and managed to install the things that gave errors, but EPubtidyTool says cannot import PIL library.
I tested it on my Arch Linux machine and it works fine. AFAIK, PIL has some image library dependencies.

To find out what depencies are missing, open a terminal and enter the following:

Code:
python3
from PIL import Image, ImageTk
You should get some kind of error message.

Most likely you'll have to install libjpeg.

Also note that you'll need to install Pillow not PIL
(Pillow is a fork of PIL that kept the PIL import name for backwards compatibility.)

On my machine the following packages are installed:
Pillow 7.2.0
libjpeg-turbo 2.0.5-3

Last edited by Doitsu; 12-02-2020 at 08:12 AM.
Doitsu is offline   Reply With Quote