我想在我的haskell项目xml库中使用(http://hackage.haskell.org/package/xml)
我下载了它。然后尝试构建并安装:
runhaskell Setup.hs configure
runhaskell Setup.hs build
runhaskell Setup.hs install
一切都好。没有错误。当我尝试从这个lib导入模块到我的项目时,例如:
import Text.XML.Light.Cursor
我收到错误:
/home/shk/dev/src/XMPP.hs:8:8:
Could not find module `Text.XML.Light.Cursor':
Use -v to see a list of the files searched for.
Failed, modules loaded: none.
怎么了?如何在haskell中安装和使用库?
谢谢。
答案 0 :(得分:2)