使Emacs在Python交互模式下使用UTF-8

时间:2009-05-20 14:50:56

标签: python emacs encoding utf-8 terminal

当我从Mac OS的Terminal.app启动Python时,python将编码识别为UTF-8:

$ python3.0
Python 3.0.1 (r301:69556, May 18 2009, 16:44:01) 
[GCC 4.0.1 (Apple Inc. build 5465)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys.stdout.encoding
'UTF-8'

对于python2.5,它的工作方式相同。

但在Emacs中,编码是US-ASCII。

Python 3.0.1 (r301:69556, May 18 2009, 16:44:01) 
[GCC 4.0.1 (Apple Inc. build 5465)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys.stdout.encoding
'US-ASCII'

如何让Emacs与Python通信,以便sys.stdout知道使用UTF-8?


编辑:由于我没有代表编辑接受的答案,这正是Aquaemacs 1.6,Mac OS 10.5.6上对我有用的。

在python-mode-hook中,我添加了一行

(setenv "LANG" "en_GB.UTF-8")

显然,Mac OS需要“UTF-8”,而dfa说Ubuntu需要“UTF8”。

此外,我必须通过执行C-x RET p然后再键入“utf-8”两次来设置输入/输出编码。我应该知道如何永久地设置它。

感谢dfa和Jouni共同帮助我找到答案。

这是我最后的python-mode-hook:

(add-hook 'python-mode-hook
  (lambda ()
        (set (make-variable-buffer-local 'beginning-of-defun-function)
             'py-beginning-of-def-or-class)
        (define-key py-mode-map "\C-c\C-z" 'py-shell)
        (setq outline-regexp "def\\|class ")
        (setenv "LANG" "en_GB.UTF-8"))) ; <-- *this* line is new

1 个答案:

答案 0 :(得分:7)

检查你的环境变量:

$ LANG="en_US.UTF8" python -c "import sys; print sys.stdout.encoding"
UTF-8
$ LANG="en_US" python -c "import sys; print sys.stdout.encoding"  
ANSI_X3.4-1968

在python hook中,尝试:

(setenv "LANG" "en_US.UTF8")