【发布时间】:2023-04-03 09:58:01
【问题描述】:
我正在尝试使用 python-mode.el
配置 emacs。我做了很多研究,虽然我还是新手,因为我不确定如何配置所有东西。我使用了以下资源,这些资源很有帮助:
- Why I chose python-mode.el: http://www.emacswiki.org/emacs/PythonProgrammingInEmacs
- General emacs modes info: https://www.gnu.org/software/emacs/manual/html_node/emacs/Choosing-Modes.html#Choosing-Modes
- Andrea Crotti explains his setup: http://www.youtube.com/watch?v=0cZ7szFuz18
- Andrea's configuration instructions via README.md
- Andrea's init.el file
- Jedi Repository
- Python 2.7 installed via Enthought Canopy
- Downloaded python-mode.el here
我一直在设置使用 Andrea 的方法,我相信我有资源,但我仍然有疑问:
- 我有一个
.emacs
文件,我知道要删除它。我应该将.emacs
文件的内容迁移到新文件~/.emacs.d/init.el
下吗? - 既然我打算使用 Andrea 的
init.el
文件,我是否应该将它与旧.emacs
文件中的内容一起添加到单个init.el
文件中? - 我提取了
~\.emacs.d\python-mode.el-6.1.2
下的python-mode .tar.gz 文件。这是正确的,还是我应该使用像 ELPA 这样的包管理器? - 来自 Andrea 的
README.md
,我可以通过pip install jedi epc pylint
安装 Jedi。我应该在哪里克隆 Jedi 存储库,我应该在哪里运行pip install jedi epc pylint
? - 我在
C:\Users\Lucas\AppData\Local\Enthought\Canopy\User
下安装了 Enthought 的 Canopy python 2.7,其中有python.exe
和libs
(以及我需要的所有库),但我不确定这个位置是否会导致我在未来。我应该在C:\
下重新安装python 2.7吗?
我使用的是 Emacs 版本 24.3
操作系统:Windows 7
【问题讨论】:
标签:
python
emacs
configuration
dot-emacs
python-mode
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:在 Emacs 中配置新模式:安装 python-mode.el - Python技术站