基本上,我已经安装了 Sublime Text 2 来用 Python 编写代码。
然后我安装了包控制并通过包控制搜索“SublimeREPL”并安装了包,但是即使在安装之后,当我通过工具 > SublimeREPL > Python > Python 选择 Python 时,我得到错误:
WindowsError(2, '系统找不到指定的文件。')
请问有什么帮助吗?我对此很陌生。
基本上,我已经安装了 Sublime Text 2 来用 Python 编写代码。
然后我安装了包控制并通过包控制搜索“SublimeREPL”并安装了包,但是即使在安装之后,当我通过工具 > SublimeREPL > Python > Python 选择 Python 时,我得到错误:
WindowsError(2, '系统找不到指定的文件。')
请问有什么帮助吗?我对此很陌生。
转到preferences -> Keybindings - User
并粘贴此内容。确保您的文件中只有一组[]
,如果您已经设置了自定义键绑定,则,
在最后一个之后添加一个,}
然后粘贴[]
除开头和结尾之外的所有内容,
。
[
{ "keys": ["ctrl+shift+r"], "command": "repl_open",
"caption": "Python",
"mnemonic": "p",
"args": {
"type": "subprocess",
"encoding": "utf8",
"cmd": ["python", "-i", "-u","$file"],
"cwd": "$file_path",
"syntax": "Packages/Python/Python.tmLanguage",
"external_id": "python"
}
}
]
保存并退出 Sublime Text。
按照这些说明 如何在 Windows 7 中添加到 pythonpath?
您现在应该可以使用 crtl+shift+r 在 repl 中运行当前文件
打开 sublime text 并创建一个新文件。另存为hello.py
类型:
print('Hello World')
保存然后按 ctrl-shift-r
看看这是否有效