使用以下命令在RHEL 6中安装Timeplot时
cabal install timeplot
我收到以下错误:
Data/Array/IArray.hs:1:14: Unsupported extension: Trustworthy
答案 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.6cabal install strptime-1.0.6
然后安装timeplot
cabal install timeplot
答案 1 :(得分:0)
Timeplot可能依赖于比安装的GHC或平台附带的更新的阵列,因此它试图将其从hackage中解脱出来。新阵列(默认情况下选择)与旧的GHC不向后兼容。