我在尝试安装软件包时遇到堆栈错误。
Run from outside a project, using implicit global project config
Using resolver: lts-8.0 from implicit global project's config file: /home/chuck/.stack/global-project/stack.yaml
Invalid package ID: "array-0.5.1.1 base-4.9.1.0 binary-0.8.3.0 bytestring-0.10.8.1"
stack --version有效:
Version 0.1.10.0 x86_64
和堆栈设置返回:
Run from outside a project, using implicit global project config
Using resolver: lts-8.0 from implicit global project's config file: /home/chuck/.stack/global-project/stack.yaml
stack will use a locally installed GHC
For more information on paths, see 'stack path' and 'stack exec env'
To use this GHC and packages outside of a project, consider using:
stack ghc, stack ghci, stack runghc, or stack exec
我重新安装了堆栈,我在新安装后遇到了同样的错误。所以,我不知道自己做错了什么。我需要它来使用原子。
修改
Stack.yaml:
# This is the implicit global project's config file, which is only used when
# 'stack' is run outside of a real project. Settings here do _not_ act as
# defaults for all projects. To change stack's default settings, edit
# '/home/chuck/.stack/config.yaml' instead.
#
# For more information about stack's configuration, see
# https://github.com/commercialhaskell/stack/blob/release/doc/yaml_configuration.md
#
flags: {}
extra-package-dbs: []
packages: []
extra-deps: []
resolver: lts-8.0
答案 0 :(得分:14)
在尝试了很多事情后,我“找到了答案”。
问题是,正如epsilonhalbe所看到的,我有一个旧版本。所以我尝试这样做wget -qO- https://get.haskellstack.org/ | sh
并且它不起作用,因为我在/usr/bin/
上堆叠了所以,我删除了堆栈然后再次尝试wget -qO- https://get.haskellstack.org/ | sh
。我在路径中添加了$HOME/.local/bin/
,并且它正常工作。
我希望它可以帮助某人
修改强>
有一个新版本的堆栈,但ghc-mod
只能在堆栈的lts-9.0
之前工作。因此,如果您遇到ghc-mod
的问题并且您的堆栈版本超过8.0.2
那么:
nano /Users/USERNAME/.stack/global-project/stack.yaml
并替换resolver: ---
resolver: lts-9.0
然后,在终端stack solver
上,它会工作:)
答案 1 :(得分:4)
我被同样的问题阻止了,除非我检查which stack
(或使用where stack
作为替代)并且我发现我使用的是旧版本的堆栈,我以某种方式安装,并且当我输入stack
命令时,从未访问过新版本...
如果您检查stack --version
并获得类似Version 0.1.10.0 x86_64
的内容,那么它远离当前版本,我正在使用的当前版本(在回答此问题时)为Version 1.3.3, Git revision 078cfadeb37a39501eae24732e5c757cc8aca31b x86_64 hpack-0.17.0
如果您确认没有使用错误的堆栈,但堆栈版本仍然太低,您可以使用stack upgrade --git
将堆栈升级到git的最新版本(注意这将需要一段时间。
希望这有用。