在更新到优胜美地之前,emacs 中的 Flymake 工作正常。但现在它在抱怨:
Flymake: Failed to launch syntax check process 'pychecker' with args (<filename>_flymake.py): Searching for program: no such file or directory, pychecker. Flymake will be switched OFF.
其中<filename>
是打开的缓冲区中文件的名称。这是我的flymake配置:
(add-to-list 'load-path "~/.emacs.d/")
;; Setup for Flymake code checking.
(require 'flymake)
(load-library "flymake-cursor")
;; Script that flymake uses to check code. This script must be
;; present in the system path.
(setq pycodechecker "pychecker")
(when (load "flymake" t)
(defun flymake-pycodecheck-init ()
(let* ((temp-file (flymake-init-create-temp-buffer-copy
'flymake-create-temp-inplace))
(local-file (file-relative-name
temp-file
(file-name-directory buffer-file-name))))
(list pycodechecker (list local-file))))
(add-to-list 'flymake-allowed-file-name-masks
'("\\.py\\'" flymake-pycodecheck-init)))
(add-hook 'python-mode-hook 'flymake-mode)
这是/usr/local/bin/pychecker
:
#! /bin/sh
pyflakes "$1"
pep8 --repeat "$1" --max-line-length=80 --ignore=E123,E133,E226,E501
true
这是$PATH
:
/Users/<user>/Envs/<venv>/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/usr/texbin
<user>
我的用户名在哪里,并且<venv>
是当前活动的虚拟环境。
pychecker
如果从 shell 运行,则可以正常工作。
我通过键入emacsgui
( alias emacsgui='open -a emacs'
) 从 shell 启动 emacs,通常激活 venv。我也尝试在没有激活任何 venv 的情况下打开 emacs,但问题仍然存在。问题是什么?