作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
cabal sandbox init
cabal install haskeline
... installs successfully ...
ghci
Prelude> :module +System.Console.Haskeline
<no location info>:
Could not find module `System.Console.Haskeline'
ghc-pkg list haskeline
.. not found ..
我需要做什么才能让 haskeline 与 cabal 沙箱一起工作?如果我正常安装 haskeline (没有沙箱),那就没问题了(ghc-pkg list haskeline - 找到了)。
最佳答案
要么像 Joseph 提到的那样使用 cabal repl
,要么可以将包 db 显式传递到相对于当前工作目录的 GHCi shell。
ghci -no-user-package-db -package-db .cabal-sandbox/*-packages.conf.d YourModule.hs
建议您只使用 cabal。
关于haskell - cabal 沙盒 + haskeline,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21035806/
我是一名优秀的程序员,十分优秀!