我在 OS X lion 上使用 Aquamacs 并尝试使用最新的 python-mode.el 来编辑和运行我的 python 代码。我可以通过键入 C-! 来打开 ipython shell,但是如果我运行 Cc Cc 或 Cc | python 代码在没有 ipython的新Python缓冲区中运行。我已经尝试了许多修复。这是我的 .emacs 文件的 python 特定部分:
(when (featurep 'python) (unload-feature 'python t))
;; add custom libs
(add-to-list 'load-path "~/tools/emacs")
;; Set up pylab
(setq py-install-directory "/Users/stringham/tools/emacs/")
(require 'python-mode)
(setq py-shell-name "/usr/local/bin/ipython")
(setq py-python-command "/usr/local/bin/ipython")
有没有人成功地将 ipython 与 Aquamacs 一起使用?