Usually, I prefer manually installing the packages needed for getting started with a new language or technlogy.

I avoid using distro package managers since they tend to be a bit outdated in this regard, and specialised package managers like SDKMAN! seem overkill for one or more packages. Exceptions being languages with excellent tooling and version management like Rust or Ocaml.

I’ve been doing this for a while and was wondering what the general consensus is

Edit: Thanks for your replies everyone! I’ve decided to stick with my distro package manager.

  • lurch@sh.itjust.works
    link
    fedilink
    arrow-up
    14
    ·
    3 months ago

    uninstalling sometimes doesn’t work when you install from source, so i’ve learned to be patient and always use the distro package.

    • redcalcium@lemmy.institute
      link
      fedilink
      arrow-up
      8
      ·
      3 months ago

      This is why you should build a package when compiling from source instead of doing make install directly. Packages can easily unistalled or upgraded.