GabMus / razerCommander

GTK contol center for managing razer peripherals on Linux
GNU General Public License v3.0
164 stars 25 forks source link

deb package installs for python3.6 by default #52

Closed charandas closed 6 years ago

charandas commented 6 years ago

I did not have a straightforward path to the using the deb package. At first, I thought I was missing Python GTK/GObject, but turns out the bootstrap script is using python 3.6 specific stuff such as:

sys.path.insert(1, '/usr/lib/python3.6/site-packages')
# and
    gi.require_versions({
        'Gtk': '3.0',
    })

My python3.5 package only supported gi.require_version('Gtk', '3.0'). So in the spirit of saving time for a non python established end-user, we may wanna recommend a python3.6 install. Thoughts?

GabMus commented 6 years ago

Oh, that's very helpful, thanks! I tested the deb in Ubuntu Mate 17.10 and it worked fine, so I guess it's a problem with older versions that don't ship python 3.6. Will make sure to point out to that link in the Ubuntu sections.