错误:"无法加载' Data.Either.Utils'"

时间:2016-12-06 14:52:07

标签: haskell import cabal

有谁知道为什么这个单一的,特定的导入语句会导致问题?我正在使用沙箱和阴谋。我的其他导入工作正常(Web.Scotty,Data.Text.Lazy等)。我和" cabal exec runghc filename.hs"一起运行。我没有cabal.config文件,但我有一个cabal.sandbox.config文件。

我试图使用Data.Either.Utils中的forceEither函数。据我所知,我的导入语句是正常的:

{-# LANGUAGE OverloadedStrings #-}
import Web.Scotty
import Control.Monad.Trans (liftIO)
import Data.Aeson (object, (.=))
import Network.HTTP.Types.Status
import Data.Text.Lazy
import Data.Text.Lazy.IO
import Data.Either.Utils

import Data.Monoid (mconcat)

消息:

filename.hs:8:1: error:
    Failed to load interface for ‘Data.Either.Utils’
    Use -v to see a list of the files searched for.

使用-v运行显示:

Using a sandbox located at
/Users/myuser/Desktop/mydirectory/myotherdirectory/.cabal-sandbox
/usr/local/bin/ghc --print-global-package-db
/usr/local/bin/runghc filename.hs

1 个答案:

答案 0 :(得分:2)

Data.Either.Utils模块不属于" base"哈斯克尔;它是MissingH软件包的一部分,那个软件包似乎是..哈哈......不见了!

我对Cabal沙箱不太熟悉(我使用Stack),但大概你可以运行:

cabal install MissingH

在你的沙箱中,你应该好好去。

如果这不起作用,只需从MissingH复制forceEither的代码:

forceEither :: Show e => Either e a -> a
forceEither (Left x) = error (show x)
forceEither (Right x) = x