Replies: 1 comment 13 replies
-
Hi, the problem is in the first row:
Bottles is missing the |
Beta Was this translation helpful? Give feedback.
13 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello all.
I've been trying to get bottles to work on Debian Buster for a couple days now, almost a week.
All three varians (Snap, AppImage, .deb) fail for me. Snapd and AppImage both have some errors in regards to .so files so I guess it has to do with system dependencies. I think .deb would be the easiest to make work and stabler at that, but I have a different error, a python error that as far as I can tell has something to do with problems instantiating a gtk component in python, but as I've worked very little with Gtk in Python I'm not entirely sure:
(bottles:8738): Gtk-CRITICAL **: 20:42:12.715: Error building template class 'BottlesList' for an instance of type 'BottlesList': .:69:1 Invalid object type 'HdyStatusPage' Traceback (most recent call last): File "/usr/share/bottles/bottles/main.py", line 125, in do_command_line self.do_activate() File "/usr/share/bottles/bottles/main.py", line 169, in do_activate arg_lnk=self.arg_lnk) File "/usr/share/bottles/bottles/window.py", line 123, in __init__ page_list = BottlesList(self, arg_executable) File "/usr/share/bottles/bottles/pages/list.py", line 207, in __init__ self.btn_create.connect("pressed", self.window.show_add_view) AttributeError: 'NoneType' object has no attribute 'connect'
From what I see, that btn_create should be a Gtk.Template.Child() and it should in theory be working, but I've never used templates (Gtk in python) so I'm not sure if it's dependant on the .ui file meta/lamba-ed right before the class definition, and if it's a location issue, etc.
I appreciate any help to make this work. Bottles would really fit some use cases for me.
Beta Was this translation helpful? Give feedback.
All reactions