Emacs Python 自动补全--Elpy

Posted Fienly

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Emacs Python 自动补全--Elpy相关的知识,希望对你有一定的参考价值。

安装方法:

首先,安装一些依赖包:

# Either of these
pip install rope
pip install jedi
# flake8 用来检查语法错误
pip install flake8
# importmagic 用来自动引入需要的包
pip install importmagic
# autopep8 用来检查PEP8规范
pip install autopep8
# yapf 用来格式化代码
pip install yapf

 

然后,在你的Home目录下,创建一个.emacs文件,并写入如下内容:

(require \'package)
(add-to-list \'package-archives
             \'("elpy" . "https://jorgenschaefer.github.io/packages/"))

打开emacs运行 M-x package-refresh-contents加载新的库,然后运行M-x package-install RET elpy RET(RET即回车键)安装elpy

 

最后,把下边的内容添加到.emacs文件中

(package-initialize)
(elpy-enable)

完成。

 

 

Reference:

https://github.com/jorgenschaefer/elpy

https://realpython.com/blog/python/emacs-the-best-python-editor/

http://codingpy.com/article/emacs-the-best-python-editor/

https://www.emacswiki.org/emacs?action=browse;oldid=PythonMode;id=PythonProgrammingInEmacs#toc2

https://elpy.readthedocs.io/en/latest/introduction.html#installation

以上是关于Emacs Python 自动补全--Elpy的主要内容,如果未能解决你的问题,请参考以下文章

Python3,Emacs(OSX)中的Elpy:未找到完成用户错误:无法完成

Emacs之Python编程环境配置 - elpy

带有Elpy 1.7.50的Emacs 24无法识别Python项目

请教,关于emacs写lisp自动补全的设置

Emacs 补全:自动补全还是公司? [关闭]

gocode+auto-complete搭建emacs的go语言自动补全功能