我正在加载第三方项目https://github.com/jordanspooner/haskell-web-crawler。
在一个源文件中,有导入命令
import Data.Aeson
我从中收到错误
Utils/HtmlParser.hs:9:1: error:
Could not find module ‘Data.Aeson’
Perhaps you meant Data.Version (from base-4.11.1.0)
Locations searched:
Data/Aeson.hs
Data/Aeson.lhs
Data/Aeson.hsig
Data/Aeson.lhsig
我只是使用ghc构建,并提供了其他一些选择
ghc -O2 --make Main.hs -threaded -rtsopts
我可以在http://hackage.haskell.org/package存储库中看到该软件包,所以我不确定为什么找不到它。