SparkyLinux Forums

Software & hardware support => Newbie questions => Topic started by: givo53 on August 11, 2021, 09:16:54 AM

Title: apt-xapian-index
Post by: givo53 on August 11, 2021, 09:16:54 AM
I have installed apt-xapian-index but the quick search does not appear in the toolbar.
Some idea?

Ivo

Sparkylinux xfce
Title: Re: apt-xapian-index
Post by: seppalta on August 21, 2021, 07:30:37 AM
The problem is in a python script called 'relations.py' which is located in /usr/share/apt-xapian-index/plugins/. At line 114 the code is:
        doc.add_term(pfx + name.split(None, 1)[0])
This should be:
        doc.add_term(pfx + name.split(' ', 1)[0])
Change this using your favorite root editor. Then run: sudo update-apt-xapian-index -vf'  .