1

I am trying to render Yaru cursor theme. I have a few scripts. But it says

to build and the render the cursor set you'll need python-pil and x11-apps installed.

I am not sure which commands to use to install them. Any help will be great.

I have 18.04 fully updated.

Melebius
  • 11,431
  • 9
  • 52
  • 78
user227495
  • 4,089
  • 17
  • 56
  • 101

1 Answers1

2

The Yaru repository is intended for Ubuntu, so the specification “python-pil and x11-apps” most likely refers directly to Ubuntu packages names. To install these packages, simply run:

sudo apt install python-pil x11-apps

Which command should I use? Python 2 or 3.

Since the package names are directly specified, you don’t have to choose yourself. python-pil is a Python 2 package and you can simply check that the render-cursors.py script is written in Python 2 as it starts with:

#!/usr/bin/env python2
Melebius
  • 11,431
  • 9
  • 52
  • 78