[SOLVED] 2 apps not working

You have a problem with Slackel? Post here and we'll do what we can to help.
Post Reply
bsd4me
Posts: 106
Joined: 03 Jan 2018 19:27
Location: Kenai Peninsula in Alaska

[SOLVED] 2 apps not working

Post by bsd4me »

1. emacs required libgccjit. I installed libgccjit and emacs now runs :)

2. when starting gufw, I get this response

Code: Select all

$ gufw &
[1] 7115
mike[lib64]$ Traceback (most recent call last):
  File "/usr/share/gufw/gufw.py", line 19, in <module>
    from instance   import Check
  File "/usr/share/gufw/instance.py", line 18, in <module>
    import gtk
ModuleNotFoundError: No module named 'gtk'

I don't know how to fix that one.
Last edited by bsd4me on 24 Apr 2024 20:34, edited 1 time in total.
Retired at home in Alaska for now.
djemos
Site Admin
Posts: 676
Joined: 15 Apr 2016 06:03

Re: 2 apps not working

Post by djemos »

type

Code: Select all

sudo slapt-get -u
sudo slapt-get --upgrade
bsd4me
Posts: 106
Joined: 03 Jan 2018 19:27
Location: Kenai Peninsula in Alaska

Re: 2 apps not working

Post by bsd4me »

Thank you again djemos :)
Retired at home in Alaska for now.
djemos
Site Admin
Posts: 676
Joined: 15 Apr 2016 06:03

Re: [SOLVED] 2 apps not working

Post by djemos »

bsd4me wrote: 23 Apr 2024 15:38 1. emacs required libgccjit. I installed libgccjit and emacs now runs :)
There are two emacs packages. emacs-29.3-x86_64-1 and emacs-29.3-x86_64-2_regular The first one is on e packages group and the other is on extra packages group.
emacs-29.3-x86_64-2_regular edition need only tree-sitter to run.
(Tree-sitter only exists on x86_64 bit and do not exist on 32bit because it is has no support for 32 bit.)
emacs-29.3-x86_64-1 need both tree-sitter and libgccjit to run.

emacs-29.3-i586-2_regular run without tree-sitter and without libgccjit.
emacs-29.3-i586-1 package need only libgccjit to run.

slapt-get -i emacs pull the emacs-29.3-x86_64-2_regular or emacs-29.3-i586-2_regular package.

slackware deps packages are the same for 32 and 64 bit ( e.g. emacs.dep) 32 bit deps folder is a link to 64 bit deps folder.
It is really a mess.

I had to made tricks so emacs and emacs_regular to work for both 32 and 64bit.
Post Reply