wavexx / screenkey

A screencast tool to display your keys inspired by Screenflick
https://www.thregr.org/~wavexx/software/screenkey/
GNU General Public License v3.0
758 stars 65 forks source link

can't launch screenkey downloaded from github #46

Closed ChameleonScales closed 7 years ago

ChameleonScales commented 7 years ago

I can use screenkey when it's installed from the AUR but if I uninstall it, download it from Github and run the screenkey executable, I get these errors :

Traceback (most recent call last):
  File "./screenkey", line 9, in <module>
    from Screenkey import *
  File "/home/caetano/Installed_programs/screenkey-master/Screenkey/__init__.py", line 2, in <module>
    gettext.install('screenkey', unicode=True)
TypeError: install() got an unexpected keyword argument 'unicode'

I need to make it work because I want to use a fork.

wavexx commented 7 years ago

On Tue, Jun 27 2017, Caetano Veyssières wrote:

Traceback (most recent call last): File "./screenkey", line 9, in from Screenkey import * File "/home/caetano/Installed_programs/screenkey-master/Screenkey/init.py", line 2, in gettext.install('screenkey', unicode=True) TypeError: install() got an unexpected keyword argument 'unicode'


I need to make it work because I want to use a fork.

Try to make explicit the python version: python2.7 screenkey.py

ChameleonScales commented 7 years ago

Yes ! Thank you