2

我正在尝试安装 Elm,说明是安装 Haskell,然后

sh> cabal update
sh> cabal install cabal-install
sh> cabal install -j Elm elm-repl elm-reactor elm-get

当我这样做时,cabal-install 安装会安装 text-1.2.0.0,它与 uniplate 需要的 text-1.1.0.0 冲突,因此 uniplate 及其依赖项无法安装。Text-1.1.0.0 已安装并存在,但被拒绝以支持 text-1.2.0.0,即使目标需要 text-1.1.0.0。

有没有办法坚持 cabal 使用 text-1.1.0.0?有没有办法让 text-1.1.0.0 和 text-1.2.0.0 共存?有没有办法说服 uniplate 它可以接受 text-1.2.0.0?或者一种让单板(或阴谋集团)相信版本 text-1.1.0.0 实际安装的方法?那还能用吗?

当我明确尝试安装文本版本 1.1.0.0 时,我被告知重新安装会破坏其他包。显然这是降级而不是共同安装。cabal 似乎没有允许我同时安装同一个库的两个版本的选项。

如果我卸载 Haskell 和所有库,然后重新安装 Elm(没有安装 cabal-install 所以我没有安装 text-1.2.0.0 所以没有冲突),我得到 100 左右行

package aeson-0.7.0.4-8f84b14cc682e4c9b009352420076a45 is unusable due to missing or recursive dependencies:
  attoparsec-0.10.4.0-ec2d0a330db1f6e3a6a3b79471a403ef hashable-1.2.2.0-45bd22df8c4ead6b3a7fb1d08bb07f7d mtl-2.1.3.1-8bcc0591131896cfc8761a93703d4c61 scientific-0.2.0.2-5e275f5d96527da6dc1f05642692a484 syb-0.4.1-be94ebe67c3607f5df1dfcc1906f5d5c text-1.1.0.0-9bd69e9ace700e05fb08e463086bc383 unordered-containers-0.2.4.0-69836b34d13649bcfacc8fb0c9f53e64 vector-0.10.9.1-c550551354bc7c2b5a1d261f39b2f3f4
package aeson-pretty-0.7.1-5dc26d5a4560afe110e90283479a1251 is unusable due to missing or recursive dependencies:
aeson-0.7.0.4-8f84b14cc682e4c9b009352420076a45       
text-1.1.0.0-9bd69e9ace700e05fb08e463086bc383 
unordered-containers-0.2.4.0-69836b34d13649bcfacc8fb0c9f53e64 
vector-0.10.9.1-c550551354bc7c2b5a1d261f39b2f3f4
package asn1-encoding-0.9.0-94e9066cccf7ead73bee5ae4aa982071 is unusable due to missing or recursive dependencies:
mtl-2.1.3.1-8bcc0591131896cfc8761a93703d4c61
package asn1-parse-0.9.0-af4efc4777a8a0d9d19a626d5e4b08ff is unusable due to missing or recursive dependencies:
asn1-encoding-0.9.0-94e9066cccf7ead73bee5ae4aa982071
mtl-2.1.3.1-8bcc0591131896cfc8761a93703d4c61 
text-1.1.0.0-9bd69e9ace700e05fb08e463086bc383

我完全不知道如何解决这个问题,甚至不知道在哪里尝试。以前有没有人走过这条路,你有什么建议或指示吗?

谢谢你。

编辑 在沙箱中安装只会逐渐改变结果:text-1.1.0.0 不会与 text-1.1.0.0 冲突,但仍然无法加载(尽管已安装)并且仍然是未满足的依赖项。

blaze-builder 是第一个失败的,cannot satisfy -package-id text-1.1.0.0-9bd69e9ace700e05fb08e463086bc383但前面提到的相同日志[_12] trying: text-1.1.0.0/installed-9bd... (dependency of Elm-0.13)没有明显的错误或抱怨。

cabal list显示已安装的 text-1.1.0.0 和 text-1.2.0.0。

单独安装 blaze-builder 看起来是一样的。依赖解析显示

[_56] trying: blaze-builder-0.3.3.4 (user goal)
[_57] next goal: text (dependency of blaze-builder-0.3.3.4)
[_57] trying: text-1.1.0.0/installed-9bd...
[_58] done

一切看起来都不错,但后来,相同的日志

<command line>: cannot satisfy -package-id text-1.1.0.0-9bd69e9ace700e05fb08e463086bc383
    (use -v for more information)

ghc命令行已经有-v标志并尝试重新运行从日志中复制的命令行,带有更多的-vs,给出错误“无法在 dist/dist-sandbox-ad0bcd57/package.conf 找到包数据库。到位”。

似乎不存在 package.conf.inplace。

进一步编辑

在 Elm 安装页面上是一个BuildFromSource.hs脚本的链接,该脚本也应该用于安装 Elm。在该脚本运行和失败的时间里,我设法安装了 leiningen、node、npm、grunt 和 Clojure。我现在在大约 20 分钟内安装 Clojurescript 的道路上走得更远,而不是在近一周内安装 Elm。

榆树看起来有趣,但玩起来太难了。

再次感谢所有试图提供帮助的人。

* 编辑 *

我终于明白了。

安装程序在http://elm-lang.org/Install.elm安装的每个可执行文件都会导致段错误。

同一页面上的“从源代码构建”选项不起作用,因为依赖关系要么相互交叉,要么一开始就无法直接进行。

http://new-www.haskell.org/downloads/osx上的 ghc需要比我更高版本的 Mac OS。(旧版本的链接不会误入歧途。)

解决方案(回想起来很明显)是 to port install haskell-platformand 。我确实必须运行其中一个安装程序两次,因为它找不到 hackage.haskell.org(这是一个“用户”错误吗?)但我的 hello-world.elm 现在可以编译了。port install hs-cabal-installcabal install Elm ...

再次感谢大家。

4

1 回答 1

1

It looks like some dependency issues with elements you already have installed. You will probably need to install it in a sandbox.

First, update to the latest version of cabal:

$ cabal update
$ cabal install cabal cabal-install

Next, make sure you have the installed version of cabal on your $PATH.

$ which cabal
> /path/to/cabal/bin/cabal

If it says something like /usr/bin/cabal you will need to export cabal to be on your $PATH. For me this is `/home/username/.cabal/bin

$ export PATH=/path/to/cabal/bin/cabal;$PATH

Run which cabal again and ensure it is pointing to that path.

Now that you have the latest version of cabal. Run the following:

$ mkdir elm
$ cd elm
$ cabal sandbox init

This will initialize a sandbox where dependencies are completely independent of your other installs. Within this directory, you should be able to install the elm platform by running:

$ cabal install Elm elm-repl elm-reactor elm-get

These will be installed in a sub-directory called .cabal-sanbox/bin/ For convenience, you will probably want to add this to your $PATH so you can run the executables from any directory.

Hope this helps!

于 2014-11-15T12:26:03.230 回答