1、Sublime Text 2中添加Python Build配置php
Solution 1#: 打開「Tools-->Build System-->New Build System」,添加以下內容並保存:html
{ "cmd": ["D:\\Python27\\python.exe", "-u", "$file"], "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)", "selector": "source.python", "encoding": "utf-8" }
備註:Python安裝路徑 D:\Python27\python.exepython
Solution 2#: 修改原有的Python Build文件sublime-text
打開「Browse Packages --> Python --> Python.sublime-build」文件,修改成Solution 1#中內容。app
2、Sublime text 2的build系統不支持中文路徑ide
Sublime text 2的build系統不支持中文路徑,根據報錯能夠知道是由於中文編碼的問題,win下的編碼爲(gbk),sublime text2默認爲**,能夠經過以下方式解決:ui
打開sublime_plugin.py文件,添加如下內容:編碼
reload(sys) sys.setdefaultencoding('gbk')
三GUI程序的運行spa
若是Ctrl+b沒法執行gui程序,好比PyQt4,wxPython,PySide 等命令行
也是參考這個網頁http://www.tsingfeng.com/index.php/python/how-to-run-a-wxpython-gui-app-in-sublime-text-2.html
通過step3的設置,就會顯示dos窗口
若是你對Ctrl+b構建運行程序不太喜歡,能夠Install Package 安裝SublimeREPL
安裝後執行SublimeREPL:Python - RUN current file也能夠運行py文件.這個就更簡單了
同時你也能夠選擇SublimeREPL:Python或者SublimeREPL:Python - Sublime Text Console進入命令行模式,像IDLE同樣進入交互模式