Zypper on Ubuntu

13,850

zypper is the suse package manager.

Ubuntu uses apt (in whatever flavor you choose. aptitude, apt-get, etc.).

You might be able to find a version of zypper for Ubuntu but I wouldn't bet on it... nor would I suggest you even bother trying. Just use one of the apt family of tools.

As an aside that error isn't directly related to the zypper problem and is actually an issue in the 'command not found' helper that Ubuntu tried to use to tell you what to install to get the command you wanted. I have no idea why that would be happening offhand but it certainly appears to be a local issue.

Share:
13,850

Related videos on Youtube

Marc Ortiz
Author by

Marc Ortiz

I Develop.

Updated on September 18, 2022

Comments

  • Marc Ortiz
    Marc Ortiz over 1 year

    I'm trying to install packages using zypper but Amazon server that runs Ubuntu seems not to have zypper installed. How can I install zypper?

    code: zypper install git gcc gcc-c++

    error:

    > unsupported locale setting
    Traceback (most recent call last):
      File "/usr/lib/python3/dist-packages/CommandNotFound/util.py", line 24, in crash_guard
        callback()
      File "/usr/lib/command-not-found", line 69, in main
        enable_i18n()
      File "/usr/lib/command-not-found", line 40, in enable_i18n
        locale.setlocale(locale.LC_ALL, '')
      File "/usr/lib/python3.3/locale.py", line 541, in setlocale
        return _setlocale(category, locale)
    locale.Error: unsupported locale setting
    
    • ganesh
      ganesh almost 11 years
      What is your locale set to ? Does it install if you temporarily change that?
    • Shekhar
      Shekhar almost 11 years
      try sudo apt-get install <package name > If you dont find it you will need to add a repo of the software
  • trve.fa7ad
    trve.fa7ad over 9 years
    Ubuntu also has apt command by itself, not just aptitude, apt-get etc. Try apt update; apt upgrade, one cool thing about apt (something) is that it has sort of a progress bar for the installation/upgrade process.