我安装了Package SublimePythonIDE。错误 - 突出显示工作正常,但自动功能不起作用。这是我的配置:
{
// leave empty string to use default system interpreter
// e.g. /usr/local/bin/python
// or "C:\\Python27\\python.exe"
// if you use virtualenvs, then set the absolute path to the virtualenv's
// python in your project settings (Project->Edit Project) as in:
//
// {
// "folders": ...
// "settings":
// {
// "python_interpreter": "/Users/USER/.virtualenvs/PROJECT/bin/python"
// }
// }
"python_interpreter": "D:/Python27/",
// make python_open_documentation command output in a view or in the output
// panel if false
"open_pydoc_in_view": false,
// when a doc view is created it will be placed in the active view group
// if false and only one group exist then a new group will be created
"create_view_in_same_group": false,
// Linter settings
"python_linting": true,
"python_linter_mark_style": "outline", // "none" or "outline"
"python_linter_gutter_marks": true,
"python_linter_gutter_marks_theme": "simple", // see folder gutter_mark_themes
"pep8": true,
"pep8_ignore": [],
"pep8_max_line_length": 80,
"pyflakes_ignore": []
}
我错了什么?
答案 0 :(得分:2)
如果查看第3行和第4行的示例,您将看到需要提供Python可执行文件的完整路径。所以,将你的行改为:
"python_interpreter": "D:\\Python27\\python.exe",
你应该全力以赴。