更新 Emacs 22.2.1 中的 Python 版本

发布于 2024-10-04 11:39:51 字数 173 浏览 1 评论 0原文

我最近安装了 Python 3.1,但 Emacs 仍然使用 2.6.5。我使用的是 Emacs 版本 22.2.1。我不确定要编辑哪些文件才能使 Emacs 默认使用 Python 3.1!

我正在使用 python-mode.el 和 pyemacs,如果这有帮助的话......

最好, 乔治娜

I've recently install Python 3.1, but Emacs still uses 2.6.5. I'm using Emacs version 22.2.1. I'm not sure which files to edit in order to make Emacs use Python 3.1 by default!

I'm using python-mode.el and pyemacs, if that helps...

Best,
Georgina

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

小梨窩很甜 2024-10-11 11:39:51

请参阅之前的讨论

  • 中的 Python 2 和 3

Emacs 你的 .emacs 文件,应该执行以下操作:

;; python 3
(setq python-python-command "python3")

See a previous discussion on this

In your .emacs file, following should do:

;; python 3
(setq python-python-command "python3")
稀香 2024-10-11 11:39:51

我所要做的就是添加

(setq py-python-command "/usr/bin/python3.1")

到我的 .emacs 文件中。

All I had to do was add

(setq py-python-command "/usr/bin/python3.1")

To my .emacs file.

旧街凉风 2024-10-11 11:39:51

如果您想“全局”更改 python 模式中使用的 Python 版本,实际上需要更改许多不同的变量。请尝试以下操作:

(add-hook 'python-mode-hook
            (lambda ()
              (setq py-python-command "/usr/bin/python3.1")
              (setq py-default-interpreter "/usr/bin/python3.1")))

There are actually a number of different variables that need to be changed if you want to "globally" change the version of Python that is being used in python-mode. Try the following:

(add-hook 'python-mode-hook
            (lambda ()
              (setq py-python-command "/usr/bin/python3.1")
              (setq py-default-interpreter "/usr/bin/python3.1")))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文