2012-12-15 2 views
5

Sto usando emacs come IDE python. Sto avendo flymake installato, tuttavia, mostra il seguente errore ogni volta che lavoro con un file .pyQual è la corretta configurazione di flymake per emacs? (usando Python.el)

Error (flymake): Flymake: Impossibile lanciare controllare la sintassi di processo 'pycheckers' con args (stringa-operations_flymake. py): Ricerca del programma: nessun file o directory, pycheckers. Flymake verrà spento

La mia configurazione .emacs per flymake è la seguente:

;; flymake 
(add-to-list 'load-path "~/.emacs.d/vendor") 
(add-hook 'find-file-hook 'flymake-find-file-hook) 
(when (load "flymake" t) 
    (defun flymake-pyflakes-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 "pycheckers" (list local-file)))) 
    (add-to-list 'flymake-allowed-file-name-masks 
      '("\\.py\\'" flymake-pyflakes-init))) 
(load "~/.emacs.d/vendor/flymake-cursor.el") 
(global-set-key [f10] 'flymake-goto-prev-error) 
(global-set-key [f11] 'flymake-goto-next-error) 

Tutti i suggerimenti su come risolvere questo

risposta

5

Installa flycheck. Dovrebbe funzionare fuori dalla scatola.