sublime text3 下配置python3!

Posted findlisa

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sublime text3 下配置python3!相关的知识,希望对你有一定的参考价值。

1.下载sublime3和python3(在腾讯软件中心下载较快)

2.安装

3.打开sublime ,tools->build system->new build system,在文件中写入:

{
	"encoding": "utf-8",
	"working_dir": "$file_path",
	"shell_cmd": "C:\python36\python.exe -u "$file"",
	"file_regex": "^[ ]*File "(...*?)", line ([0-9]*)",
	"selector": "source.python"
}

  shell_cmd是python的安装路径,注意按照格式来,然后ctrl+s,保存文件,去取名为python3.6

4.点击build system 可以看到python3.6,选择它,然后新建一个文件,ctrl+s把文件命名为hello.py,在文件输入代码:

print(‘hello world!‘)

  然后ctrl+b运行,正常运行,至此第一步大功告成!

5.但是这样的是没有交互功能的,比如出现提示输入,然后键盘输入一个数,目前这个配置是无法做到的,我们要安装一个插件

6.选择tools->install package control,等待安装成功

7.在pereference可以看到package control,然后点击package control,在搜索框输入install package

8.可能出现问题:https://www.jianshu.com/p/ceb68e69f1ad

9.搜索sublimeREPL

10.key blindings绑定F5

{
"keys":["f5"],
"caption": "SublimeREPL: Python - RUN current file",
"command": "run_existing_window_command", "args": {"id": "repl_python_run",
"file": "config/Python/Main.sublime-menu"}
}

11.代码补全插件:sublimecodeINTEL

以上是关于sublime text3 下配置python3!的主要内容,如果未能解决你的问题,请参考以下文章

Mac系统下sublime text3 - Python3配置教程(运行Hello World程序-没有打印结果)

Sublime Text3 配置Python3编译环境

Sublime Text3 配置 Python2 Python3

python3代码编辑器① | Sublime Text3各操作系统安装与配置

sublime text3 中 python3编译出现中文乱码解决方法

ubuntu16.04下sublime text3安装和配置