this post was submitted on 08 Apr 2024
134 points (83.5% liked)
linuxmemes
21303 readers
1355 users here now
Hint: :q!
Sister communities:
- LemmyMemes: Memes
- LemmyShitpost: Anything and everything goes.
- RISA: Star Trek memes and shitposts
Community rules (click to expand)
1. Follow the site-wide rules
- Instance-wide TOS: https://legal.lemmy.world/tos/
- Lemmy code of conduct: https://join-lemmy.org/docs/code_of_conduct.html
2. Be civil
- Understand the difference between a joke and an insult.
- Do not harrass or attack members of the community for any reason.
- Leave remarks of "peasantry" to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
- Bigotry will not be tolerated.
- These rules are somewhat loosened when the subject is a public figure. Still, do not attack their person or incite harrassment.
3. Post Linux-related content
- Including Unix and BSD.
- Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of
sudo
in Windows. - No porn. Even if you watch it on a Linux machine.
4. No recent reposts
- Everybody uses Arch btw, can't quit Vim, and wants to interject for a moment. You can stop now.
Please report posts and comments that break these rules!
Important: never execute code or follow advice that you don't understand or can't verify, especially here. The word of the day is credibility. This is a meme community -- even the most helpful comments might just be shitposts that can damage your system. Be aware, be smart, don't fork-bomb your computer.
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
If an AUR package wants to install 137 python dependencies, I usually search for a flatpak instead.
Why is this the case? Have I been installing stuff wrong my entire life?
Beside what @[email protected] wrote:
-bin
package.@pineapplelover @infeeeee No, some people just don't want to install tons of packages just for an application they want to use to. The more package means the higher chance for system breakage. It's better checking dependencies and pkgbuild before install
Yeah but I thought if I installed it through AUR natively then it would be better since if other programs need those same dependencies, I wouldn't have to install them again.
Personally i like chaotic-aur because it's already pre compiled
The only aur packages on my is system is stacer-bin (the only cleaner i trust other than bleachbit)
Stacer for the win!
You can remove dependencies after install, at least in yay, I never do tho.
That's install dependencies (in PKGBUILD they are called
makedepends
), python programs usually need them for runtime (depends
in PKGBUILD). On the main page of a package they are listed together, but on the PKGBUILD they are separate😁 I know (well that about two types of dependencies)
That python dependency seem more a upstream issue, not a AUR issue, isn’t it? I mean, if I install the same app from another source, it still needs those dependencies, isn’t it?