4

我使用其中一个 msi 文件安装了 python。但是当我启动 emacs 时,它给了我:

问题 1,我以为我已经解决了

当我运行 cmd 并输入 python 时,我得到

"python" is not recognized as an internal or external command, operable program or batch file.

因此,从在线资源(windows 7 btw)转到系统属性和环境变量并为我的特定用户添加了一个用户变量

路径和 %PATH%;C:\Python27

它工作了一点,但不是。

问题2:

pymacs-report-error: Pymacs helper 没有在 30 秒内启动

我不知道为什么。我怎样才能解决这个问题?

4

1 回答 1

1

我认为您的可执行文件必须是“python”而不是“python2.7”(例如)。

此外,必须将 Pymacs 安装到 python 目录的 site-packages 目录(或 PYTHONPATH 环境变量中的目录)(在基于 UNIX 的系统上,我使用“pip”或“easy_install”)。

最后,pymacs.el 必须放在您的 ~/.emacs.d/vendor/ (例如)目录中(在 Windows 上,请参阅这篇文章)并正确加载。

在我的 ~/.emacs.d/init.el 我有这个:

(setq my-dot-emacs-dir "~/.emacs.d")
(setq my-vendor-emacs-dir (concat my-dot-emacs-dir "/vendor"))
(add-to-list 'load-path my-vendor-emacs-dir)

您可以调整此代码以自动加载位于 .emacs.d/vendor/ 中的 .el 文件

于 2011-03-18T09:45:58.287 回答