• MangoPenguin@lemmy.blahaj.zone
    link
    fedilink
    English
    arrow-up
    5
    ·
    edit-2
    7 months ago

    I mean there’s that, but it’s a lot of work for a dev too.

    I would rather Linux just be able to detect what’s missing and install it for me. In the case of a lot of missing components, what it says is missing will be named completely different from the package you need to install which makes it really hard.

    It was always nice with windows installers because they would come with the needed components, or windows would just prompt to install them automatically.

    I guess that’s essentially what Flatpak solves!

    • moog@lemm.ee
      link
      fedilink
      arrow-up
      3
      ·
      7 months ago

      That’s what aptitude does. It says “these things are dependencies that are missing. Do you want to install them?” And you can say yes, no, or ask it to try to find a different fix. And idk what you mean by that’s a lot of work. If a dev can’t be bothered to tell people how to install their program then idk how they expect people to use their software.

    • Successful_Try543@feddit.de
      link
      fedilink
      arrow-up
      2
      ·
      edit-2
      7 months ago

      There are two specific problems I see here for the mentioned binaries.

      1. The software is packaged as a generic archive, no format like rpm or deb the system package manager could/does handle. Thus, the package manager of your system does neither know that you’ve installed this binary nor what it depends on. The developer could have at least mentioned on which exact system the Linux binaries are supposed to work, e.g. Ubuntu 22.04, so that the user knows, that they might have issues running it on a different system.
      2. The developer could have built and packed it in a way that it can be installed by the package manager of a specific distribution. Launchpad or OBS are made for this purpose. The other option, wrapping it as a flatpak, works too, but may bloat the system of the user as different versions of the same libraries are installed (system generic + flatpak version).

      Nonetheless, as a Linux user, you are encouraged to build directly from source.

      • MangoPenguin@lemmy.blahaj.zone
        link
        fedilink
        English
        arrow-up
        2
        ·
        7 months ago

        Nonetheless, as a Linux user, you are encouraged to build directly from source.

        Yeah screw that lol, I want my OS to just work and be easy to use with minimal fuss.