Emacs中的Python(无模式,普通安装)

时间:2011-06-20 22:20:20

标签: python emacs

我正在尝试在Emacs 22.3.1中启动Python解释器。我没有安装任何模式(我现在也没有计划)。 Emacs识别Python文件,但我在初始消息中有这个:

Loading python (compiled; note, source file is newer)...
Loading easymenu...done
Loading python (compiled; note, source file is newer)...done
Loading vc-git...done
Loading comint...done
apply: Searching for program: no such file or directory, python

.emacs文件包含:

(custom-set-variables
'(python-python-command "python")
  )

我尝试在defcustom python-python-command "python"中编辑python.el以将“python”设置为“c:\ python32 \ python.exe”,但没有运气。

Python路径在Windows路径中设置。

1 个答案:

答案 0 :(得分:0)

答案分为两部分。首先出现的错误是Windows路径设置中的额外空格字符。这导致Emacs在调用python时不会失败。

第二部分是Emacs冻结。更新到最新版本解决了这个问题。

感谢大家的评论!