cabal install --- 全局约束需要安装实例
cabal install --- global constraint requires installed instance
我的 cabal 依赖项列为
base ==4.6.*, containers ==0.5.*, bytestring ==0.10.*, binary ==0.5.*, parsec ==3.1.*
我做到了,
cabal sandbox init
wget http://www.stackage.org/lts/cabal.config
cabal install --only-dependencies
为了克服依赖冲突,我正在使用沙盒安装。但是,cabal 仍在谈论一些让我感到困惑的全局限制。
Cabal 依赖树解析被搞砸了,
trying: parsec-3.1.8 (dependency of myproj-0.1.0.0)
next goal: mtl (dependency of parsec-3.1.8)
rejecting: mtl-2.2.1, 2.2.0.1, 2.2 (global constraint requires ==2.1.3.1)
trying: mtl-2.1.3.1
next goal: transformers (dependency of mtl-2.1.3.1)
rejecting: transformers-0.4.2.0, 0.4.1.0, 0.3.0.0, 0.2.2.1, 0.2.2.0, 0.2.1.0,
0.2.0.0, 0.1.4.0, 0.1.3.0, 0.1.1.0, 0.1.0.1, 0.1.0.0, 0.0.1.0, 0.0.0.0,
0.4.0.0 (global constraint requires installed instance)
您的当前目录中应该有一个 cabal.config
文件。使用任何文本编辑器打开它并搜索 transformers installed
字符串。
找到后,将其替换为 transformers ==0.4.3.0
或您喜欢的任何其他版本。
我的 cabal 依赖项列为
base ==4.6.*, containers ==0.5.*, bytestring ==0.10.*, binary ==0.5.*, parsec ==3.1.*
我做到了,
cabal sandbox init
wget http://www.stackage.org/lts/cabal.config
cabal install --only-dependencies
为了克服依赖冲突,我正在使用沙盒安装。但是,cabal 仍在谈论一些让我感到困惑的全局限制。
Cabal 依赖树解析被搞砸了,
trying: parsec-3.1.8 (dependency of myproj-0.1.0.0)
next goal: mtl (dependency of parsec-3.1.8)
rejecting: mtl-2.2.1, 2.2.0.1, 2.2 (global constraint requires ==2.1.3.1)
trying: mtl-2.1.3.1
next goal: transformers (dependency of mtl-2.1.3.1)
rejecting: transformers-0.4.2.0, 0.4.1.0, 0.3.0.0, 0.2.2.1, 0.2.2.0, 0.2.1.0,
0.2.0.0, 0.1.4.0, 0.1.3.0, 0.1.1.0, 0.1.0.1, 0.1.0.0, 0.0.1.0, 0.0.0.0,
0.4.0.0 (global constraint requires installed instance)
您的当前目录中应该有一个 cabal.config
文件。使用任何文本编辑器打开它并搜索 transformers installed
字符串。
找到后,将其替换为 transformers ==0.4.3.0
或您喜欢的任何其他版本。