我从这里下载了Haskell平台源:http://www.haskell.org/platform/linux.html,安装了ghc,并执行了/.configure。但是,当我做sudo make时,我收到以下错误:
Preprocessing library HUnit-1.2.4.2...
Test/HUnit/Base.hs:1:1:
Could not find module `Prelude'
Perhaps you haven't installed the profiling libraries for package `base'?
Use -v to see a list of the files searched for.
Error:
Building the HUnit-1.2.4.2 package failed
make: *** [build.stamp] Error 2
有谁知道如何解决这个问题?
我正在尝试在Ubuntu 12.04.1 LTS上安装
答案 0 :(得分:8)
而不是尝试从源代码安装,只需安装Ubuntu软件包,这将更加简单:
$ sudo apt-get install haskell-platform
如果您需要本地版本的文档和分析库,请使用以下命令安装其他软件包:
$ sudo apt-get install haskell-platform-doc haskell-platform-prof
答案 1 :(得分:5)
sudo apt-get install ghc*-prof
这就是它对我有用的方式