4

我当前在 emacs 中的 python 设置是:

(setq py-shell-name "ipython") ;; sudo pip install ipython
(setq py-shell-name "/usr/local/bin/ipython")
(setq py-force-py-shell-name-p t)
(add-to-list 'load-path "~/.emacs.d/python-mode.el-6.1.0/") 
(setq py-install-directory "~/.emacs.d/python-mode.el-6.1.0/")
(require 'python-mode)
(add-to-list 'auto-mode-alist '("\\.py\\'" . python-mode))
(add-to-list 'interpreter-mode-alist '("python" . python-mode))

在 python 文件中,我用 "Cc !" 启动 python 解释器。(py 壳)。我用“抄送|”评估代码区域 (py 执行区域)。

如果我单独执行以下每一行,

x = "hello world"
x
print(x)

我在 python shell 缓冲区中得到以下内容:

Python 2.7.2 (default, Jun 20 2012, 16:23:33) 
Type "copyright", "credits" or "license" for more information.

IPython 0.13.1 -- An enhanced Interactive Python.
?         -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help      -> Python's own help system.
object?   -> Details about 'object', use 'object??' for extra details.

In [1]: 
In [5]: 
In [6]: hello world

In [7]: 

如果我使用默认的 python 解释器,我会得到

Python 2.7.2 (default, Jun 20 2012, 16:23:33) 
[GCC 4.2.1 Compatible Apple Clang 4.0 (tags/Apple/clang-418.0.60)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> >>> >>> hello world
>>> 

问题:

  1. 这些行为是否正确(没有显示正在评估哪些代码,也没有显示 python 解释器通常会打印什么)?

  2. 如何设置它以便 python shell 像终端中的普通 python 解释器一样打印输出?(打印输入代码和输出)

我想我已经习惯了 R 的 ESS。谢谢。

4

1 回答 1

0

您正在寻找可能会实施的功能。

在这种情况下,请将其作为问题提交至

https://answers.launchpad.net/python-mode

完成后,在底部使用“(+) 创建错误报告”。

它会创建一张票,帮助我们跟踪问题。

或者,您可以创建蓝图并在之后链接工单。

到目前为止完成:

https://blueprints.launchpad.net/python-mode/+spec/print-input-code

此外,您的 init 会显示一些无用的代码 - 但无害。“py-shell-name”的第二个设置采用第一个的符号。

“...-mode-alist”的东西已经从 python-mode 完成了,你不必关心。

于 2013-02-03T09:58:34.283 回答