1

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
Marc Ortiz
  • 113
  • 1
  • 1
  • 5

3 Answers3

6

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.

Etan Reisner
  • 2,238
0

You can also just install Zypper on Ubuntu:

sudo apt install zypper

Reference: Zypper in Launchpad

0

You CAN NOT install any software package by zypper on Ubuntu, because glibc on Ubuntu is diffrent from glibc on openSUSE. I suggest you to chroot into openSUSE installation. TESTED on Ubuntu 20.04

sudo apt install zypper
sudo zypper ar -f -c http://download.opensuse.org/tumbleweed/repo/oss repo-oss
sudo zypper ar -f -c http://download.opensuse.org/tumbleweed/repo/non-oss repo-non-oss
sudo zypper ar -f -c http://download.opensuse.org/tumbleweed/repo/debug repo-debug
sudo zypper ar -f -c http://download.opensuse.org/update/tumbleweed/ repo-update
sudo zypper ar -f -d -c http://download.opensuse.org/tumbleweed/repo/src-oss repo-src-oss
sudo zypper ar -f -d -c http://download.opensuse.org/tumbleweed/repo/src-non-oss repo-src-non-oss`
Toto
  • 19,304