Atom Python 配置专属IDE

选择一个合适的IDE,对于强迫症的人来说,比较重要。最开始用的是Eclipse, 之后是用Pycharm,最近发现了Atom ,推荐。
环境: W7 ,64位

下载链接

https://atom.io/

适合python的插件

├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
└── [email protected]

若还需要其他的插件(有插件下载排行),请点击:Atom 插件排行

插件安装

Aotm安装时,已经默认安装了apm包管理器,类似于Python的pip,Node.js的npm,
开始安装插件,建议不要在Atom 中安装,可能会一直提示失败。
推荐使用 :apm install packageName

例如 在cmd 中输入:apm install script

运行Python文件:

script插件 是运行代码时使用,安装成功后,可以打开.py文件,快捷键ctrl+shift +b(Mac cmd + i ) 运行python代码。

插件升级:

插件的初始安装可以使用apm install packageName 安装,之后可以在Atom的 setting→Updates 中升级.

插件说明

1:这个暂时就不说了,google 下Atom + 插件名称就可以找到,例如Atom script。
2:安装成功以后,可能需要点击setting→package→找到对应的包名,点击setting 设置下。
3:打开setting的方法,ctrl+shift+p 输入setting ,一般第一个,回车打开。
4:也可以点击file→setting,如果没有主菜单,可以按照3的步骤打开setting后,找到core→
Auto Hide Menu Bar 取消√

备注

需要注意的是,yapf 需要先使用pip install yapf 安装然后再python-yapf的 setting 中设置好path

遇到问题

1:

问题:突然自动补全不能使用,google也没找到答案,就一个一个的包设置。
解决:最后把python-jedi 禁用了,才有效,不知道什么问题,先记录下。


2:

问题:提示
Atom Python 配置专属IDE_第1张图片

解决
安装
pip install pylama
apm install linter-pylama

配置setting →Executeable Path 设置路径 C:/Python27/Scripts/pylama.exe


3:
使用ctrl + alt + b 格式化代码,提示如下图
Atom Python 配置专属IDE_第2张图片

解决:

pip install autopep8
pip install isort
再重启Atom


4:
git 配置

settings→package→搜索git plus→点击setting→找到Git path 配置自己电脑安装的git (C:\Program Files\Git\cmd\git.exe)


5:
报错:
Atom Python 配置专属IDE_第3张图片

解决:
pip install python-language-server

之后会慢慢总结,再补充把

你可能感兴趣的:(工具)