When reinstalling a package using Cabal, one usually sees this warning:
Warning: Note that reinstalls are always dangerous. Continuing anyway...
What are some of the reasons behind this message?
When reinstalling a package using Cabal, one usually sees this warning:
Warning: Note that reinstalls are always dangerous. Continuing anyway...
What are some of the reasons behind this message?
Currently, reinstalling a package means destructively overwriting an already installed package. If that old package has any reverse dependencies on the system, they'll no longer work.
To make this less likely, cabal-install
checks the package databases it has access to when invoked for such reverse dependencies and lists them. In this situation, it requires --force-reinstalls
to continue. But even if none reverse dependencies can be found, it does not mean there are none. It's possible there are additional package databases elsewhere on the system (for example, multiple user databases), or project directories that have been configured against the old version of the package that is to be overwritten. There's no way for cabal-install
to be completely sure, that's why it warns that reinstalls are always dangerous.
cabal-install
should be refined a bit. A reinstall in a sandbox can still break packages that use the sandbox (and sandboxes can be shared between several projects, although that's not all that common). But it can at least not break anything that isn't using the sandbox. –
Trigeminal © 2022 - 2024 — McMap. All rights reserved.