34

The Software Center has a section of For Purchase programs —see screenshot below—,
which is annonying me every time I want to install something.

Is there any way to remove or hide these programs from the Software Center?

Links to answers:

For 13.10 and higher
For 13.04
For 12.10
For 12.04
For 11.10 and lower
Please leave a comment or send a mail to jmendeth@gmail.com
if it's not working for you or you're having trouble!

The 'For purchase' section of the Ubuntu Software Center.

7 Answers7

17

For 12.04

Derived from Pavlos G. answer and inspiration from Darmien answer.
Different version? Go to the list.
See the end of the post if you are in trouble and want to revert the changes.


1. Ignore the purchasable apps

Open a terminal (Ctrl + Alt + T) and type:

gksu gedit /usr/share/software-center/softwarecenter/db/update.py

And press Enter. You'll be prompted for your password.
Then an editor will appear. Locate the following lines (hint: Ctrl + F may help):

        doc = make_doc_from_parser(parser, cache)
        if not doc:
            LOG.debug("make_doc_from_parser() returned '%s', ignoring" % doc)
            return
        term_generator.set_document(doc)
        name = doc.get_data()

Immediately after those lines, paste the following (including the spaces!):

        if doc.get_value(XapianValues.PRICE) not in (""): return

Note: if you want to keep stuff that doesn't cost money, but has to be "purchased"
(like trials, magazines and other propietary stuff), replace ("") with ("0.00", "").

Save the file (Ctrl + S), open the Software Center and… voila!
There are no commercial programs!
You can close the editor and the terminal now.

2. Remove the "For purchase" channel (optional)

To also remove that "For purchase" item in the menu, open a terminal and type:

gksu gedit /usr/share/software-center/softwarecenter/backend/channel_impl/aptchannels.py

Locate these lines:

        if get_distro().PURCHASE_APP_URL:
            channels.append(for_purchase_channel)

And disable them by putting a # in front of every line:

        #if get_distro().PURCHASE_APP_URL:
        #    channels.append(for_purchase_channel)

Save and enjoy a software center without ads!

 


Side notes: The. files. are. packaged.

What does this mean, you ask? This means that,
whenever you upgrade your Software Center, the changes
will be reverted and you'll have to do this steps again.

Undo the modifications

If you want to restore the original state of the files,
open a terminal and type:

sudo apt-get install --reinstall software-center && exit

Again, you will be prompted for your password, this time on the terminal.
Type it and press ENTER. Don't worry if nothing appears when you type, it's to hide your password.
The terminal will automatically close when finished.

  • 2
    As I have said to others, it is best to make a backup before editing anything critical for a program. – nanofarad Aug 31 '12 at 12:14
  • 1
    @ObsessiveFOSS good point. But keep in mind that: 1) The changes are trivial and easy to undo. It is unlikely that people will ever get lost. :D 2) This files are packaged, so if you make a mistake you can just reinstall the package. – Alba Mendez Aug 31 '12 at 15:48
  • @ObsessiveFOSS I've added instructions to revert, just in case ;) – Alba Mendez Sep 01 '12 at 12:14
12

For 11.10 and earlier

You can edit:

/usr/share/software-center/softwarecenter/backend/channel.py

and comment out (or delete) the following lines:

for_purchase_channel = None

#create a "magic" channel to display items available for purchase                                              `
        for_purchase_query = xapian.Query("AH" + AVAILABLE_FOR_PURCHASE_MAGIC_CHANNEL_NAME)
        for_purchase_channel = SoftwareChannel(self.icons, 
                                             "For Purchase", None, None, 
                                             channel_icon=None,   # FIXME:  need an icon
                                             channel_query=for_purchase_query,
                                             installed_only=installed_only)

if partner_channel is not None:
        #    channels.append(partner_channel)
        #channels.append(for_purchase_channel)

Of course, you should have in mind that consequent updates to software-center will probably overwrite the script...

Check out this link for more details ;-)

Note: for 12.04 the filename is /usr/share/software-center/softwarecenter/backend/channel_impl/aptchannels.py. The same steps apply.

Pavlos G.
  • 8,844
6

I found a way to hide commercial results for 12.04:

In /usr/share/software-center/softwarecenter/ui/gtk3/models/appstore2.py:

After the lines:

def set_from_matches(self, matches):
    """ set the content of the liststore based on a list of
        xapian.MSetItems
    """
    LOG.debug("set_from_matches len(matches)='%s'" % len(matches))

Add the following line:

    matches[:] = [m for m in matches if (m.document.get_value(XapianValues.PRICE) in _FREE_AS_IN_BEER)]

It should only change what is displayed, but I did not test it much yet, so use at your own risks. And enjoy an ad-free software center.

Damien
  • 226
6

For completeness, here is the solution that worked for me in 13.10:

sudo aptitude install gksu
gksu gedit /usr/share/software-center/softwarecenter/db/update.py

Find this:

def make_doc(self, cache):
    """Build a Xapian document from the desktop info."""
    doc = xapian.Document()

And add this (make sure you have the right indentation of TABS (python requires this):

if self.has_option_desktop("X-AppInstall-Price"):
    if self.get_desktop("X-AppInstall-Price") > 0: return

BTW this was my first python evar :-)

  • +1 Can't verify right now, but added to the TOC as well. Thanks! – Alba Mendez Jan 12 '14 at 01:59
  • Works for 14.04, but it would be better if it could be turned on/off from UI. This solution is rather permanent. Never see apps for purchase again. – VlatkoB Jul 08 '14 at 20:02
3

I tried this it it worked for me: only FREE (price not more than 0) items are displayed.

gksu gedit /usr/share/software-center/softwarecenter/db/update.py

Find this:

def make_doc_from_parser(parser, cache):
    # XXX 2012-01-19 michaeln I'm just pulling this code out from
    # index_app_info_from_parser, but it'd be great to further
    # refactor it - it looks quite scary :-)
    doc = xapian.Document()
    # app name is the data

Then add the following code:

if parser.has_option_desktop("X-AppInstall-Price"):
    if parser.get_desktop("X-AppInstall-Price") > 0: return
kiri
  • 28,246
  • 16
  • 81
  • 118
deputt
  • 51
2

For 12.10 and later

Derived from jmendeth answer.
Different version? Go to the list.
See the end of the post if you are in trouble and want to revert the changes.

Close the Software Center if it's open.
Now open a terminal (Ctrl + Alt + T) and type:

gksu gedit /usr/share/software-center/softwarecenter/db/update.py

And press Enter. You'll be prompted for your password.
Then an editor will appear. Locate the following lines (hint: Ctrl + F may help):

        doc = self.make_doc(cache)
        if not doc:
            LOG.debug("%r.index_app_info: returned invalid doc %r, ignoring.",
                      self.__class__.__name__, doc)
            return
        name = doc.get_data()

Immediately after those lines, paste the following (including the spaces!):

        if doc.get_value(XapianValues.PRICE) not in (""): return

Save the file (Ctrl + S) and close the editor, but not the terminal.
Now type in the terminal:

gksu gedit /usr/share/software-center/softwarecenter/backend/channel_impl/aptchannels.py

Press ENTER. An editor will appear again. Locate these lines:

        if get_distro().PURCHASE_APP_URL:
            channels.append(for_purchase_channel)

And disable them by putting a # in front of every line:

        #if get_distro().PURCHASE_APP_URL:
        #    channels.append(for_purchase_channel)

Save the file, close the editor but not the terminal.
In the terminal, type:

gksu echo; sudo update-software-center && exit

Wait a bit, the terminal will automatically close when finished...
Then open the Software Center and… voila!
There are no commercial programs!

Side notes: The. files. are. packaged.

What does this mean, you ask? This means that,
whenever you upgrade your Software Center, the changes
will be reverted and you'll have to do this steps again.

Undo the modifications

If you want to restore the original state of the files,
open a terminal and type:

gksu echo; sudo apt-get install --reinstall software-center && exit

Again, you will be prompted for your password.
The terminal will automatically close when finished.

blvdeer
  • 482
-2

You can do this more simply by selecting View -> Canonical Maintained Software instead of All Software. This has the benefit of not being overwritten by software updates.

This may hide some additional items but at least it gets rid of the annoying magazines and for sale software in my experience.

  • 2
    Then you're hiding a 90% of all the software, showing only the software (commercial or not) that Canonical supports. What I want to do is remove the propietary software only. – Alba Mendez Aug 20 '13 at 14:32