Cabal安装quickcheck版本问题
我正在尝试通过 cabal 在 Ubuntu 10.04 上安装 Quickcheck 2。无论我尝试做什么,我总是会得到以下结果:
$ cabal list quickcheck
* QuickCheck
Synopsis: Automatic testing of Haskell programs
Latest version available: 2.1.1.1
Latest version installed: 1.2.0.0
Homepage: http://www.cse.chalmers.se/~koen
License: BSD3
这是在干净的 Ubuntu 10.04 上,仅安装了 ghc6 和 cabal-install apt 软件包。在尝试安装 Quickcheck 之前,我已经通过 cabal 安装了二进制包。
它告诉我 2.1.1.1 可用,但它只安装 1.2.0.0。为什么我无法让它实际安装最新版本?
I'm trying to install quickcheck 2 via cabal on Ubuntu 10.04. No matter what I try to do, I always end up with the following:
$ cabal list quickcheck
* QuickCheck
Synopsis: Automatic testing of Haskell programs
Latest version available: 2.1.1.1
Latest version installed: 1.2.0.0
Homepage: http://www.cse.chalmers.se/~koen
License: BSD3
This is on a clean Ubuntu 10.04 with only the ghc6 and cabal-install apt packages installed. I had installed the binary package via cabal before trying to install quickcheck.
It tells me 2.1.1.1 is available, but it only ever installs 1.2.0.0. Why can't I get it to actually install the latest version?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道为什么它选择旧版本,但你可以这样做:
你可以在版本号中更具体,但你不必这样做。
I'm not sure why it chooses the old version, but you can just do:
You can be more specific in the version number, but you don't have to.