What's the reason behind cabal (dependency) hell?

前端 未结 3 1402
心在旅途
心在旅途 2020-12-19 05:19

How does dependency hell happen in Cabal-install?

I read the following at Cabal/Survival - HaskellWiki:

1. What is the difficulty caused by C

3条回答
  •  天命终不由人
    2020-12-19 05:39

    One way dependency hell happens is when several different projects you are working on interfere. While a single project has a solvable constraint set, two different project might not and since they're sharing a single package DB, there will be trouble. This variant of dependency hell is solved by cabal sandboxes.

提交回复
热议问题