我正在安装Hackage string-conversions
。但是,它失败并出现以下错误。
Configuring string-conversions-0.3.0.3...
Building string-conversions-0.3.0.3...
Preprocessing library string-conversions-0.3.0.3...
[1 of 1] Compiling Data.String.Conversions ( Data/String/Conversions.hs, dist/build/Data/String/Conversions.o )
In-place registering string-conversions-0.3.0.3...
Creating package registration file:
/tmp/pkgConf-string-conversions-0.3.011675.3
cabal: Error: some packages failed to install:
string-conversions-0.3.0.3 failed during the final install step. The exception
was:
/tmp/pkgConf-string-conversions-0.3.011675.3: hGetContents: invalid argument
(invalid byte sequence)
Ubuntu GNOME:14.10
ghc:7.6.3
cabal:1.20.0.2
答案 0 :(得分:0)
这是与语言环境相关的错误。检查LANG
是否设置为C.UTF-8
,en_US.UTF-8
或其他UTF-8 locale
。检查系统上是否有可用的区域设置文件。
您必须设置LANG=C.UTF-8
(使用locale -a
查看系统中可用的内容。)
你可以在中看到更多 http://github.com/haskell/cabal/issues/1883它会帮助你
答案 1 :(得分:0)
我终于找到了解决方案。
Rajarshi适合语言环境问题。但是,更改区域设置暂时无法正常工作。
在永久更改区域设置后,现在可以正确安装软件包。
$ locale
如果您发现LANG
为C
或为空,可能是配置不正确
$ sudo update-locale LANG=en_US-UTF-8
退出并重新登录