Zypper on Ubuntu

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
2

2 Answers

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.

1

You can also just install Zypper on Ubuntu:

sudo apt install zypper

Reference: Zypper in Launchpad

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like