Aqui está uma solução que redefiniu python-shell-parse-command
:
(require 'python)
(defun python-shell-parse-command ()
"Return the string used to execute the inferior Python process."
"/usr/bin/python3 -i"
)
Chamar run-python
chama /usr/bin/python3 -i
.
Como uma nota lateral
Existem dois modos para o python: python.el
(padrão) e python-mode.el
. Você cita a ligação de python.el
, então eu dei uma solução para python.el
. Eu só queria mencionar que python-mode.el
tem um comando interno para a tarefa: python3
.