码迷,mamicode.com
首页 > 编程语言 > 详细

VS Code 配置Python

时间:2016-12-16 14:37:37      阅读:453      评论:0      收藏:0      [点我收藏+]

标签:配置   路径   margin   htm   play   安装   执行文件   command   文件   

1. 安装VS Code的Python插件,选择安装次数最多的那个

2. 点击用户设置菜单,在settings.json中添加 "python.pythonPath": "D:/Program Files/Python27/python"

 

新建文件夹,新建 hello.py文件,键入

print ("hello")
print (你好)

再进行配置,按F1,搜索task,点击configure task runner,在tasks.json文件中,修改两个内容,路径和执行文件名。

"command": "D:/Program File/Python27/python",
"args": ["${file}"],

点击F5, 出来

 技术分享

点击最左边的绿色按钮,输出结果:

 

技术分享

 

注意:网上说的 shift + ctrl + b 不管用,出来乱码,按F5才行。

 

参考:百度经验

VS Code 配置Python

标签:配置   路径   margin   htm   play   安装   执行文件   command   文件   

原文地址:http://www.cnblogs.com/VVingerfly/p/6186522.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!