4

ライブラリ reactie-banana-wx をインストールしようとすると、次のエラーが表示されます。

src\CRUD.hs:10:18: Could not find module `Data.Map': It is a member of the hidden package `containers-0.4.0.0'. Perhaps you need to add `containers' to the build-depends in your .cabal file.

コマンドをインストールしました:

cabal install reactive-banana-wx

問題の修正にご協力ください。

4

1 に答える 1

4

ファイルcabal installを生成するステップを隠します。.cabalその部分を明示的に行う方法は次のとおりです。

cabal unpack reactive-banana-wx
cd reactive-banana-wx-*
gvim *.cabal # or whatever editor you prefer
# follow the instructions given in the error
cabal install
于 2011-09-17T14:31:23.570 に答える