无法在RHEL中安装Timeplot

时间:2012-09-20 03:40:14

标签: haskell rhel6

使用以下命令在RHEL 6中安装Timeplot

cabal install timeplot

我收到以下错误:

Data/Array/IArray.hs:1:14: Unsupported extension: Trustworthy

2 个答案:

答案 0 :(得分:0)

安装时间图我需要安装haskell-platform和cairo-devel软件包(来自EPEL

sudo yum install haskell-platform cairo-devel

然后安装gtk2hs-buildtools

cabal install gtk2hs-buildtools

此时打开一个新终端以获取包含$ HOME / .cabal / bin

的新$ PATH

你需要手动安装strptime-1.0.6,因为strptime-1.0.7给了我以下错误

building strptime-1.0.7...

Data/Time/Parse.hsc:22:18:
    Could not find module `Foreign.ForeignPtr.Unsafe':
      Use -v to see a list of the files searched for.

使用

安装strptime-1.0.6
cabal install strptime-1.0.6

然后安装timeplot

cabal install timeplot

答案 1 :(得分:0)

Timeplot可能依赖于比安装的GHC或平台附带的更新的阵列,因此它试图将其从hackage中解脱出来。新阵列(默认情况下选择)与旧的GHC不向后兼容。