- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在启用了 docker 集成的堆栈项目中使用 intero-mode。因此它的 stack.yml 包含:
docker:
enable: true
image: my-project/build:lts-11.9
尽管如此,当我打开项目中的任何 .hs 文件时,intero-mode 会尝试安装 intero 可执行文件并失败。在消息缓冲区中报告:
Installed successfully! Starting Intero in a moment ...
Booting up intero ...
Problem with Intero!
Reading Haskell configuration failed with exit code 1 and output:
get-cabal-configuration.hs: /home/jesuspc/.nix-profile/bin/hpack: createProcess: runInteractiveProcess: exec: does not exist (No such file or directory)
我得到了 intero 模式的错误屏幕:
...
The process ended. Here is the reason that Emacs gives us:
exited abnormally with code 1
For troubleshooting purposes, here are the arguments used to launch intero:
stack ghci --with-ghc /home/jesuspc/.stack/compiler-tools/x86_64-linux-dke094d5208e8a802cb369cecdad3049ae/ghc-8.2.2/bin/intero "--docker-run-args=--interactive=true --tty=false" --no-build --no-load --ghci-options -ignore-dot-ghci my-project
...
当我运行该行时,我得到:
Did not find executable at specified path: /home/jesuspc/.stack/compiler-tools/x86_64-linux-dke094d5208e8a802cb369cecdad3049ae/ghc-8.2.2/bin/intero
这可能与 nix 有关,因为我发现通过运行来代替:
stack ghci --with-ghc /home/jesuspc/.stack/compiler-tools/x86_64-linux-nix/ghc-8.2.2/bin/intero "--docker-run-args=--interactive=true --tty=false" --no-build --no-load --ghci-options -ignore-dot-ghci my-project
我收到一个不同的错误:
/home/jesuspc/.stack/compiler-tools/x86_64-linux-nix/ghc-8.2.2/bin/intero: createProcess: runInteractiveProcess: exec: does not exist (No such file or directory)
我相信可能会抛出此错误,因为我的项目使用外部库并且找不到它们,但这只是一个猜测。
intero-mode 是否知道 stack-docker 集成?它似乎试图在我的本地计算机中使用 intero 可执行文件,而不是使用 docker 上下文,其中存在所有必需的库。我该如何修复它?
最佳答案
我昨天也遇到这个问题了。看起来问题出在函数 intero-copy-compiler-tool-auto-install 中它不考虑您的 stack.yaml 文件,因此不会将 intero 构建到 docker 容器中。我发现的一个 super hacky 解决方法是运行
stack --docker build --copy-compiler-tool intero
来自您的项目。
关于haskell - 通过堆栈 docker 集成运行 emacs intero-mode,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51725510/
我一直在尝试使用 Haskell 来运行一个简单的生产过程。与许多生产过程一样,它涉及改变整个地方的事物状态。出于这个原因,拥有一个脚本文件对我来说真的很方便,我可以在其中跟踪事物并有选择地将命令运行
我无法在新的堆栈项目上使用 emacs,因为 intero 无法构建。 我刚刚在 ubuntu 16.04 上安装了 stack 1.6.3 我使用以下方法创建了一个新的 (lts-10.2) 堆栈项
我刚刚安装了 Stack 使用 curl -sSL https://get.haskellstack.org/ | sh 安装顺利,但尝试使用 Stack 安装 Intero 时失败 ffriis@B
我在全新安装的 Emacs 和 Intero 上打开了 Haskell 文件。启动时,intero 会尝试安装一个独立的 GHC。即使我的项目有 stack.yaml ,其中有 system-ghc:
当intero-mode尝试自动安装 Intero,它产生以下错误: Intero is not installed in the Stack environment. Installing inte
我正在尝试使用 M-. 转到函数的定义,但似乎 intero-goto-definition 仅适用于我当前所在的库正在开发,而不是在我导入的开发上。 这是我的 stack.yaml: flags:
我正在 emacs 下使用 Intero 来编辑我的新 Haskell 项目。我在代码中添加了对第三方库的导入,以查看 Intero 是否会自动添加必要的依赖项,但它没有。因此,我手动编辑了 .cab
我正在尝试在启用了 docker 集成的堆栈项目中使用 intero-mode。因此它的 stack.yml 包含: docker: enable: true image: my-projec
我是一名优秀的程序员,十分优秀!