答案 0 :(得分:3)
您必须使用命令
更改emacs正在使用的python解释器(setq python-shell-interpreter "python3")
您应该将其设置为您想要的任何命令。它也可以是ipython,在这种情况下你需要
(setq python-shell-interpreter "ipython"
python-shell-interpreter-args "-i")
其中ipython
命令调用ipython的python 3.5版本
答案 1 :(得分:2)
上述解决方案对我不起作用。工作是什么:
(setq py-shell-name“python3”)
根据python-mode.el中的py-choose-shell,它通过以下方法选择shell:
执行以下操作: