我曾嘗試以下:哈斯克爾模式與沙箱
cabal sandbox init
然後進行以下小集團文件。
-- Initial hsource.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: hsource
version: 0.1.0.0
-- synopsis:
-- description:
-- license:
license-file: LICENSE
author: abc
maintainer: abc
-- copyright:
-- category:
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
executable hsource
main-is: main.hs
other-modules:
-- other-extensions:
build-depends: base >=4.7 && <4.8, csv
hs-source-dirs: src
default-language: Haskell2010
現在我安裝CSV包:
cabal install --only-dependencies
現在,當我嘗試import Text.CSV
然後再C-c C-l
我收到以下錯誤:
Util/RandomTree.hs:7:8-15: Could not find module ‘Text.CSV’ …
Use -v to see a list of the files searched for.
Compilation failed.
所以我的問題是,如果沙箱是不支持haskell模式,或者我錯過了一些步驟讓他們工作?
你確定你已經啓用了interactive-haskell-mode hook嗎?看來你正在使用劣質的haskell模式。 – Sibi 2015-02-08 18:41:26
這個針對haskell模式的github問題可能會有幫助:https://github.com/haskell/haskell-mode/issues/253 – ErikR 2015-02-08 18:56:47