我正在尝试安装 elpy。我添加了线条
(require 'package)
(add-to-list 'package-archives
'("melpa-stable" . "https://stable.melpa.org/packages/")
)
(package-initialize)
(elpy-enable)
;; For elpy
(setq elpy-rpc-python-command "python3")
;; For interactive shell
(setq python-shell-interpreter "python3")
到我的 init.el 文件。我跑了package-refresh-contents
。它要求我允许连接,我选择了Always
. 然后我尝试package-install RET elpy RET
,但我没有匹配。我看到了这个:
https://emacs.stackexchange.com/a/30668/17291
但是,我的包存档同意唯一的答案。我应该尝试什么?谢谢。