0

I'm trying to use Bully v1.1.

After I enter ./bully.py, the Bully G1 v1.1 window appears. When I press the Run button, this message appears:

Warning: locale not supported by Xlib, locale set to C

I have tried locale -a, and dpkg-reconfigure locales but I don't know what to do next?

slm
  • 369,824
JDoexz
  • 11

1 Answers1

0

Whatever your locale is set to it sounds like this application cannot work with it. You could try this:

$ LC_ALL=en_US.UTF-8 ./bully.py

This sets the locale to en_US.UTF-8temporarily just for this application to be able to launch. See this U&L Q&A for more on the subject regarding LC_* variables & localizations

slm
  • 369,824