Yeah not to knock their contribution but I was hoping they'd help make system package management as easy as npm package management. If I want to install say r-studio and octave apt will install a bunch of packages with dependencies. But what if I decide I don't want r-studio or any of the other stuff related to r on my system? I can't just do apt remove r-studio.
This is why I I've been using conda, appimages and chroot jails lately. Still no solution though.
You can use 'apt autoremove' to remove transitive dependencies that aren't required anymore. I think you sometimes have to run it multiple times, though, because it won't recognize that a dependency of a transitive dependency is no longer required after removing the first transitive dependency.
This is why I I've been using conda, appimages and chroot jails lately. Still no solution though.