Solution
After a search, find a solution under Linux, as follows:
Copy Code code as follows:
Problems of Sublime TEXT2 running PYSIDE/PYQT Program
After the ctrl-b, the interface does not bounce out, but the background process has "Python.exe", and print can be printed to produce something.
Workaround:
Open $sublimetext_dir/data/packages/python/python.sublime-build
Add "Shell": "true",
Netizens, open C:\Program files\sublime Text 2 directory, did not find the Data directory, there is no Packages directory, guess should be placed in the user directory, look for, in
C:\Users\ my username \appdata\roaming
Found in the directory
Sublime Text 2\packages\python
Directory, decisively edit Python.sublime-build content:
{
"cmd": ["Python", "-U", "$file"],
"File_regex": "^[]*file \" (... *?) \ ", line ([0-9]*)",
"selector": "Source.python",
"Shell": "True"
}
Get!