|
|
|
|
|
by u801e
2264 days ago
|
|
> but why polute host The package manager can handle removing pretty much any file it installs when uninstalling, so the host really doesn't get "polluted". > or go back to VM overhead per application In a development environment hosted on a VM, several applications can be installed on the VM (rather than having one per VM) to reduce overhead. Then testing and making code changes could be done by running a pip -e (editable) install and modifying code in the working directory, or making the change, repackaging and re-installing, and restarting the daemon. With a container, at least in my experience, you need to re-build it each time you make a change to the code, which actually takes longer than modifying an editable install or re-building the wheel/RPM and reinstalling it. |
|