1

今天我尝试pythonemacs.

我安装pymacs, pycomplete+ , python-mode, python-pep8el-get.

当我尝试安装时rope出现此错误

el-get-executable-find: 用 `executable-find' 找不到名为 'hg' 的命令

然后,当我删除config关于"el-get"

(add-to-list 'load-path "~/.emacs.d/el-get/el-get")   
(unless (require 'el-get nil 'noerror)`    
  (with-current-buffer   
      (url-retrieve-synchronously  
       "https://raw.github.com/dimitri/el-get/master/el-get-install.el")   
    (goto-char (point-max))   
    (eval-print-last-sexp))) 
(el-get 'sync)

错误消失。

任何人都可以帮我解决它吗?

4

1 回答 1

1

如前所述,在路径中找不到 mercurial dvc 命令“hg”。

一旦注意到 Emacs 并没有像在 $PATH 中那样加载 emacs 变量“exec-path”中的所有可执行文件。从 Windows 系统按钮启动时会发生这种情况。也许从控制台开始时它就消失了。

检查 exec-path,如果它包含“type hg”显示的目录。在这种情况下,通过 init-file 将其添加到 exec-path 可能是一种选择。

于 2013-03-17T14:29:45.457 回答