0

I need to change my text render in kivy python from sdl2 to pango text render or text provider how can i make it ?

ahmed omran
  • 51
  • 1
  • 7
  • Have a look at [environment variables](https://kivy.org/doc/stable/guide/environment.html#restrict-core-to-specific-implementation) – John Anderson Jul 21 '22 at 01:35

1 Answers1

1

After insatlling pango, use this at the top of your file.

import os
os.environ['KIVY_TEXT'] = 'pango'
Amin Etesamian
  • 3,363
  • 5
  • 27
  • 50