Haskell base-4.x 软件包安装

发布于 2024-08-06 22:48:52 字数 507 浏览 9 评论 0原文

当我尝试安装此软件包 http://hackage.haskell.org/package/base -4.1.0.0

通过运行:

runhaskell安装程序配置

我收到此错误:

尝试使用未加载的模块“System.IO”(System/IO.hs)

不在范围内:“System.IO.stderr” '

不在范围内:'System.IO.stdin' ghc-6.8.2:恐慌! (“不可能”的事情发生了) (i386-unknown-linux 的 GHC 版本 6.8.2): InteractiveUI:setBuffering

有什么想法可能是错误的吗?另外,当我 cd 到包含文件的目录并输入 ghci 时,我收到相同的错误,但 ghci 一般情况下可以工作。

谢谢!

when I try to install this package http://hackage.haskell.org/package/base-4.1.0.0

by running:

runhaskell Setup configure

I am getting this error:

attempting to use module `System.IO' (System/IO.hs) which is not loaded

Not in scope: `System.IO.stderr'

Not in scope: `System.IO.stdin'
ghc-6.8.2: panic! (the 'impossible' happened)
(GHC version 6.8.2 for i386-unknown-linux):
interactiveUI:setBuffering

Any ideas what might be wrong? Also when I cd to the directory with the files and type ghci I am getting the same error but ghci works in general.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

忘年祭陌 2024-08-13 22:48:52

您无法升级基础包——您必须升级 GHC。只需从 Haskell 平台获取最新的 GHC:http://haskell.org/platform

You can't upgrade the base package -- you have to upgrade your GHC. Just grab the latest GHC from the Haskell Platform: http://haskell.org/platform

月棠 2024-08-13 22:48:52

我建议您升级 GHC 而不是基础。 Base-4.* 附加到最新的 GHC。

最新的 GHC 可在此处获取。

你得到的错误是当runhaskell编译Setup.lhs时,他与当前目录下现有的System.IO和System.IO混淆了。为了避免这种情况,您需要升级 GHC。顺便说一句,我不知道如何在不升级 GHC 的情况下升级基础。但基础取决于编译器,而不是任何特定的包。所以我觉得不可以。

I recomend you to upgrade your GHC not base. Base-4.* is attached to latest GHC.

Latest GHC is available at here.

The error you got is when runhaskell compiled Setup.lhs, he was confused with existing System.IO and System.IO under the current directory. To avoid this, you would need to upgrade your GHC. BTW, I don't know how to upgrade base without upgrading GHC. But base depends compiler, not any particular package. So I guess it can't.

画离情绘悲伤 2024-08-13 22:48:52

首先尝试安装 cabal-install。之后,您应该能够执行“cabal install base-4.1.0”,它会在继续安装之前自动安装所有必需的依赖项。

Try installing cabal-install first. After that you should be able to do "cabal install base-4.1.0" and it will automatically install all required dependencies before proceeding with install.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文