标题: Sublime text 3搭建Python开发环境及常用插件安装 [打印本页] 作者: lsekfe 时间: 2020-3-30 16:02 标题: Sublime text 3搭建Python开发环境及常用插件安装 一、环境准备
1、官方网站地址
2、Windows 10
3、Sublime Text 3 + 官网购买license(Just a suggestion,$80) 购买链接,Sublime Text may be downloaded and evaluated for free, however a license must be purchased for continued use。如果资金紧张,可以搜索破解版License(建议支持正版,本文不再提供破解版License)。
二、安装Sublime Text 3
1、双击下载的.exe文件安装,安装路径不要有中文目录
2、安装Sublime Text 3时,勾选“Add to explorer context menu”,可以在文件右键菜单添加“Open with Sublime Text”,方便使用Sublime Text打开文件。
三、配置Python环境
运行环境
1、打开Tools > Build System > New Build System..
[attach]128559[/attach]
2、点击New Build System后,会生成一个空配置文件,在这个配置文件内覆盖配置信息,本文python安装路径为“D:/Anaconda3”,(注意区分正反斜杠,请将路径换成python实际安装路径),然后按ctrl+s,将文件保存在默认路径,文件名命名为“Python3”
{
"cmd": ["D:/Anaconda3/python.exe","-u","$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
import urllib2,os,hashlib; h = '6f4c264a24d933ce70df5dedcf1dcaee' + 'ebe013ee18cced0ef93d5f746d80ef60'; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); os.makedirs( ipp ) if not os.path.exists(ipp) else None; urllib2.install_opener( urllib2.build_opener( urllib2.ProxyHandler()) ); by = urllib2.urlopen( 'http://packagecontrol.io/' + pf.replace(' ', '%20')).read(); dh = hashlib.sha256(by).hexdigest(); open( os.path.join( ipp, pf), 'wb' ).write(by) if dh == h else None; print('Error validating download (got %s instead of %s), please try manual install' % (dh, h) if dh != h else 'Please restart Sublime Text to finish installation')
复制代码
关掉并重新打开Sublime Text 3,如果在Perferences->package settings中能看到package control这一项,则表示安装成功。
作者: lsekfe 时间: 2020-3-30 16:08
第二种方法:手动安装
1、点击 Preferences > Browse Packages… 菜单
2、Browse up a folder and then into the Installed Packages/ folder
3、Download Package Control.sublime-package and copy it into the Installed Packages/ directory
4、Restart Sublime Text
1、通过Package Control安装其他插件
1.按下Ctrl+Shift+P调出命令面板
2.输入install 调出 Install Package
3.在列表中选中要安装的插件,或者输入插件名,根据命令面板中的过滤结果,选择要安装的插件
2、通过Package Control查看已安装的插件
1. 按下Ctrl+Shift+P调出命令面板
2. 输入"package",在下拉列表找到"ackage Control: list packages",选中后回车,可以显示全部插件列表。 五、常用插件介绍及安装
SublimeCodeIntel
介绍
Full-featured code intelligence and smart autocomplete engine
Jump to Symbol Definition - Jump to the file and line of the definition of a symbol.
Imports autocomplete - Shows autocomplete with the available modules/symbols in real time.
Function Call tooltips - Displays information in the status bar about the working function.
如图:
[attach]128569[/attach]
7.保存,重启Sublime Text 3
测试
新建文件并保存为.py文件,输入代码测试
[attach]128570[/attach]
作者: lsekfe 时间: 2020-3-30 16:13
SublimeREPL
介绍
添加快捷键后,可直接运行当前文件,非常方便
Launch python in local or remote(1) virtualenv.
Quickly run selected script or launch PDB.
Use SublimeText Python console with history and multiline input.
使用方法
1、安装SublimeREPL插件后,打开Preferences->Key Bindings,添加快捷键:
[attach]128571[/attach]
代码粘贴:
[
{
"keys": ["f5"],
"caption": "SublimeREPL: Python - RUN current file",