Set up Python 3 build system with Sublime Text 3

后端 未结 8 2167
青春惊慌失措
青春惊慌失措 2020-11-28 21:46

I want to configure Sublime Text 3 to build Python 3, but I don\'t seem to understand how the builds work. Many tutorials have told me to make a build file containing code s

8条回答
  •  感情败类
    2020-11-28 22:32

    If you are using PyQt, then for normal work, you should add "shell":"true" value, this looks like:

    {
      "cmd": ["c:/Python32/python.exe", "-u", "$file"],
      "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
      "selector": "source.python",
      "shell":"true"
    }
    

提交回复
热议问题