Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
今天安装了emacs24.3,但是出现了一些问题。在 Google 的帮助下解决了一些问题,但我无法解决以下问题。我安装了 pymacs、rope 和 yasnippets,当我打开一个 python 文件(*.py)时,出现错误:
Timeout while querying Python for system include path.
我应该如何解决问题?谢谢 !
该错误由Emacs 24.3 中包含的 CEDET(参见语义/wisent/python.el)引发。对我来说,在加载任何 CEDET 文件之前显式设置 CEDET 的python-shell-interpreter变量是可行的。我的 ~/.emacs 中的行是:
(setq python-shell-interpreter "/path/to/python")
我系统上的/path/to/python恰好是/opt/bin/python。