VSCode 配置Python 开发环境

IEEE发布2017年编程语言排行榜:Python高居首位。众所周知,自动去年alpha go在围棋界大放异彩后,人工智能成为全社会的热点话题。而Python作为全球最活跃的人工智能开源库tensorflow开源库的主要语言之一,自然也成为科研界,工业界追捧的对象。

安装Python

方法一:从Python官网下载Python 3.5的安装程序(网速慢的同学请移步国内镜像),双击运行并安装;
方法二:如果安装了Homebrew,直接通过命令brew install python3
安装即可。

检测Python 是否安装成功?

VSCode 配置Python 开发环境_第1张图片
检测Python是否安装成功

配置VScode 环境

创建Python 文件
创建test.py 文件

print("Hello VSCode")
a = 1
b = 2
c = a + b
print(c)

创建task.json 文件
使用快捷键command + shift + b, 创建task.json。

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "0.1.0",
    "command": "python",
    "isShellCommand": true,
    "args": ["test.py"],
    "showOutput": "always"
}

执行python 文件
通过command + shift + b,自动化执行python 文件,并在output 栏查看输出结果。

VSCode 配置Python 开发环境_第2张图片
查看输出结果

你可能感兴趣的:(VSCode 配置Python 开发环境)