Hakyll教程出了错

问题描述 投票:-1回答:1

我正在按照[https://jaspervdj.be/hakyll/tutorials/01-installation.html中的说明,遵循Hakyll教程。

但是似乎有些错误,我无法分辨是什么。当我运行“ stack init”时,会收到此消息。

Looking for .cabal or package.yaml files to use to init the project.
Using cabal packages:
- ./

Selecting the best among 16 snapshots...

* Partially matches lts-14.16
    hakyll not found
        - ourblog-com requires ==4.13.*

* Partially matches nightly-2019-11-25
    hakyll not found
        - ourblog-com requires ==4.13.*

* Partially matches lts-13.30
    hakyll not found
        - ourblog-com requires ==4.13.*

* Partially matches lts-12.26
    hakyll version 4.12.4.0 found
        - ourblog-com requires ==4.13.*

* Partially matches lts-11.22
    hakyll version 4.12.3.0 found
        - ourblog-com requires ==4.13.*

* Partially matches lts-10.10
    hakyll version 4.10.0.0 found
        - ourblog-com requires ==4.13.*

* Partially matches lts-9.21
    hakyll version 4.9.8.0 found
        - ourblog-com requires ==4.13.*

* Partially matches lts-8.24
    hakyll version 4.9.7.0 found
        - ourblog-com requires ==4.13.*

* Partially matches lts-7.24
    hakyll not found
        - ourblog-com requires ==4.13.*

* Partially matches lts-6.35
    hakyll version 4.8.3.2 found
        - ourblog-com requires ==4.13.*

...

* Partially matches lts-0.7
    hakyll not found
        - ourblog-com requires ==4.13.*

Selected resolver: lts-14.16
Resolver 'lts-14.16' does not have all the packages to match your requirements.
    hakyll not found
        - ourblog-com requires ==4.13.*

This may be resolved by:
    - Using '--omit-packages' to exclude mismatching package(s).
    - Using '--resolver' to specify a matching snapshot/resolver

我的路径似乎正确包含在内。为什么会这样?

haskell haskell-stack hakyll
1个回答
0
投票

看来,Hakyll的维护者尚未在Stack储存库中保持最新。创建my-site目录后,而不是运行stack init,而是手动创建一个包含以下行的stack.yaml文件:

resolver: lts-14.16
packages:
- .
extra-deps:
- hakyll-4.13.0.1

然后按照指示运行stack build等。这似乎有效。

© www.soinside.com 2019 - 2024. All rights reserved.