堆栈 - 我如何(强制?)安装旧版本的软件包



所以我正在尝试安装ghc-mod-5.4.0.0,它会以其他安装崩溃:

Error: While constructing the build plan, the following exceptions were encountered:
In the dependencies for ghc-mod-5.4.0.0:
    async-2.1.1 must match <2.1 && >=2.0.2 (latest applicable is 2.0.2)
    cabal-helper-0.7.3.0 must match <0.7 && >=0.6.1.0 (latest applicable is 0.6.3.1)
    cereal-0.5.4.0 must match <0.5 && >=0.4 (latest applicable is 0.4.1.1)
    directory-1.3.0.0 must match <1.3 (latest applicable is 1.2.7.1)
    extra-1.5.1 must match ==1.4.* (latest applicable is 1.4.12)
    ghc-8.0.2 must match >=7.4 && <7.11
    haskell-src-exts-1.18.2 must match <1.18 && >=1.16.0.1 (latest applicable is 1.17.1)
    pipes-4.3.2 must match ==4.1.* (latest applicable is 4.1.9)
    process-1.4.3.0 must match <1.3 (latest applicable is 1.2.3.0)
    time-1.6.0.1 must match <1.6 (latest applicable is 1.5.0.1)
    transformers-0.5.2.0 must match <0.5 (latest applicable is 0.4.3.0)
Plan construction failed.

那么如何强制安装该版本?是否有一种简单的方法可以清除堆栈安装缓存或类似的方法?

我认为

之类的东西
stack --resolver lts-4.2 install ghc-mod

应该做这个问题,否则我将按照cabal get ghc-mod-5.4.0.0stack initstack install的行为做一些事情。您可能需要安装/切换到其他GHC-version或使用 --allow-newer

的堆栈

最新更新