From 41cc32427651918ac3186f267b998ab16f5bc329 Mon Sep 17 00:00:00 2001 From: Raphael Roberts Date: Thu, 28 Mar 2019 01:50:56 -0500 Subject: [PATCH] Set python3 to be the interactive interpreter --- init.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.el b/init.el index 5e00c27..b60fa09 100644 --- a/init.el +++ b/init.el @@ -53,8 +53,8 @@ ;; Linux-specific ((string-equal system-type "gnu/linux") (progn - (setq elpy-interactive-command (executable-find "python3")) - (setq elpy-rpc-python-command elpy-interactive-command) + (setq python-shell-interpreter "python3") + (setq elpy-rpc-python-command python-shell-interpreter) ))) (add-hook 'git-commit-setup-hook 'git-commit-turn-on-flyspell)