21
votes

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?

1
SICP, the canonical answer (especially the section on the pigeon-drop con). - Daniel Wagner
Also the fact that you get this "warning", while it's doing/done the reinstall anyway. - Andy Hayden
And what's the point of telling me it's dangerous if you aren't going to give me an option to actually heed the warning and cancel it? - flarn2006

1 Answers

16
votes

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.