在 sublime text 中执行 python
execute python in sublime text
当我在 sublime text 中构建一个 python 程序时,我得到
python' is not recognized as an internal or external command,operable program or batch file. [Finished in 1.0s with exit code 1]
问题是 sublime text 无法找到 python 所在的路径。
当我尝试手动放置路径时,即 c:\python34\python.exe
我无法继续使用首选项浏览包,因为没有选项 select python
如何进一步做什么
伙计们,我已经添加了环境变量并且 python 在 cmd 中工作得很好..
这是我得到的完整错误
Sublime,如果您还没有注意到的话,它是使用 Python 创建的,因此您可以期望它完全支持该语言。根据您的错误,我敢猜测您没有将 Python 添加到您的路径中。观看视频 here for instructions. Otherwise, you can watch this 视频了解如何更改构建配置。
工具 - 构建系统 - 新建构建系统
{
"cmd": ["path_to_your_python", "$file"]
}
不仅仅是使用这个构建系统。
终于解决了,感谢 Ben Usman 和 ha9u63ar 我所做的是
Tools - Build System - New Build System
{
"path": "/usr/local/bin",
"cmd": ["python3", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python"
}
当我在 sublime text 中构建一个 python 程序时,我得到
python' is not recognized as an internal or external command,operable program or batch file. [Finished in 1.0s with exit code 1]
问题是 sublime text 无法找到 python 所在的路径。
当我尝试手动放置路径时,即 c:\python34\python.exe
我无法继续使用首选项浏览包,因为没有选项 select python
如何进一步做什么
伙计们,我已经添加了环境变量并且 python 在 cmd 中工作得很好..
这是我得到的完整错误
Sublime,如果您还没有注意到的话,它是使用 Python 创建的,因此您可以期望它完全支持该语言。根据您的错误,我敢猜测您没有将 Python 添加到您的路径中。观看视频 here for instructions. Otherwise, you can watch this 视频了解如何更改构建配置。
工具 - 构建系统 - 新建构建系统
{
"cmd": ["path_to_your_python", "$file"]
}
不仅仅是使用这个构建系统。
终于解决了,感谢 Ben Usman 和 ha9u63ar 我所做的是
Tools - Build System - New Build System
{
"path": "/usr/local/bin",
"cmd": ["python3", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python"
}