我为VS Code安装了Haskero插件扩展。 当我启动我的VS代码编辑器时,我收到以下错误消息。
stderr:
The following GHC options are incompatible with GHCi and have not been passed to it: -threaded
Configuring GHCi with the following packages: continue-example
<command line>: cannot satisfy -package Decimal
(use -v for more information)
Code: -32603
以下是我在package.yaml
dependencies:
- base
- stm
- Decimal
- async
- random
stack.yaml
中配置的ghc版本为resolver: ghc-8.2.2
。
看起来Decimal包有一些问题。 我是Haskell的新手。知道为什么我会收到这个错误吗?