marianosimone / epub-thumbnailer

Script to extract the cover of an epub book and create a thumbnail for it
GNU General Public License v3.0
191 stars 29 forks source link

Can't install on macOS #33

Closed stardiviner closed 3 years ago

stardiviner commented 3 years ago

I try to install this script on macOS.

But it report error:

$ sudo python install.py install
Password:
Checking dependencies ...

Required dependencies:
    Python Imaging Library .......
OK

You do not have write permissions to /usr/bin/ (maybe you need to sudo)

I used sudo but install.py script still error I don't have sudo permission.

Do I need to do extra settings under macOS?

marianosimone commented 3 years ago

Hi @stardiviner!

The installation process is intended for linux usage (as that's where the concept of a thumbnailer makes sense), not for Mac.

You can still use the script as a stand alone one if you want to generate thumbnails for yourself. For that, you can read https://github.com/marianosimone/epub-thumbnailer#stand-alone

In that case, the only required dependency is Pillow, for which you can find the instructions in their official docs

stardiviner commented 3 years ago

I see, Thanks @marianosimone