ful1e5 / Bibata_Cursor

Open source, compact, and material designed cursor set.
https://www.bibata.live
GNU General Public License v3.0
1.77k stars 70 forks source link

Error while running ./build.sh #69

Closed Greasy-Monkey closed 3 years ago

Greasy-Monkey commented 3 years ago

Getting this error while running ./build.sh on Debian 10

Traceback (most recent call last):tmaps...
  File "render-cursors.py", line 52, in <module>
    from PIL import Image
ImportError: No module named PIL
 Bibata_Classic : 😔 Generating bitmaps... FAIL

 Aborting...

Is this due to snap pakages installed? If yes , is there in workaround for this ?

ful1e5 commented 3 years ago

This error is caused by Pillow (A Image processing library). Sounds like pillow is not installed on your system, Pillow is python package so make sure python or python3 already installed on a system.

📝 Note: I recommend python3 for build.

To install python3

$ sudo apt update && sudo apt install python3 python3-pip

To install Pillow

$ pip3 install pillow           # for python3

$ pip install pillow             # for python2

Also, Check other build dependencies here