sublime如何在终端运行python

Posted shunguo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sublime如何在终端运行python相关的知识,希望对你有一定的参考价值。

首先打开cmd,运行一下这个代码:start cmd /c \" python \"$file\" & pause\"
然后打开sublime-tool-build system-build new system
删除所有 copy-paste下面这些代码:

// 指定python.exe的目录【针对未将python加入环境变量的】
// "path": "",
"shell_cmd": "python -u \"$file\"",
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python",
"env": "PYTHONIOENCODING": "utf-8",
"variants":
[

"name" :"Run cmd",
"shell" :true,
"shell_cmd":"start cmd /c \" python \"$file\" & pause\""

]

保存名字为PythonRun.sublime-build
然后打开一个python程序:按ctrl+shift+b
选择python run cmd
就可以了
以后再运行python程序就之家按ctrl+B就可以了 就会调用cmd来运行python了

以上是关于sublime如何在终端运行python的主要内容,如果未能解决你的问题,请参考以下文章

如何从 Sublime Text 2 运行 Python 代码?

如何配置python环境下的sublime

Sublime Text设置PATH预安装Anaconda和Tensorflow

如何在Xcode中设置并编辑运行Python

Mac 教程系列如何在 Mac 中用终端命令行方式打开 Sublime Text ?

在sublime文本CLI中运行python时,没有名为“statsmodels”的模块