OS X 上的 Cabal 和 zlib
当我在 Mac(Snow Leopard、Intel)上运行“cabal update”时,我得到:
% cabal update 从 hackage.haskell.org 下载最新的软件包列表 cabal:Codec.Compression.Zlib:不兼容的 zlib 版本
还有其他人看到这个吗?重新安装 Haskell Platform 没有帮助。我目前无法安装或更新 Cabal 软件包,因此非常感谢您的帮助。
谢谢!
When I run "cabal update" on my Mac (Snow Leopard, Intel), I get:
% cabal update
Downloading the latest package list from hackage.haskell.org
cabal: Codec.Compression.Zlib: incompatible zlib version
Anyone else seeing this? Reinstalling the Haskell Platform hasn't helped. I'm unable to install or update Cabal packages at the moment, so I'd appreciate any help.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为这意味着您安装的 C zlib 库已过时。你能更新一下吗?
I think this means the C zlib library you have installed is out of date. Can you update it?
我所做的是使用 +universal 标志从 MacPorts 安装 zlib,并且可以正常工作。这对你有帮助吗?
What I've done is install zlib from MacPorts with the +universal flag and that works without problems. Does this help you?
因此,我通过从计算机中完全删除 MacPorts,重新安装 zlib,然后清除我的 ~/.cabal 来修复此问题。
从那以后我就不再收到这些消息了。
谢谢大家。
So I fixed this by removing MacPorts completely from my machine, re-installing zlib with it, and then clearing out my ~/.cabal.
After that I stopped getting these messages.
Thanks, all.