我在 org 模式下有一个代码块:
#+BEGIN_SRC scheme
(define (even? n)
(= (remainder n 2) 0))
(even? 3)
#+END_SRC
当我执行 Cc Cc 来评估代码时,我收到错误“/bin/bash: guile: command not found”
我猜这是因为 org-babel 期望安装的方案实现是 guile,但我有 mit-scheme,我可以通过调用“方案”从命令行运行它。
如何让 org-babel 使用 mit-scheme 而不是尝试使用 guile?
这个类似的问题并不能解决我的问题,因为答案是针对球拍的。