vscode Python环境
1.安装
安装python
2.配置环境变量
path环境变量增加
D:\Python35\Scripts\;D:\Python35\;
测试是否安装成功,命令行执行python -V
3.安装
安装 vs code
安装插件:
Code Runner
Python
配置
文件—》首选项—》设置,在settings.json中
{
"files.autoGuessEncoding": true,
"code-runner.defaultLanguage": "utf-8",
"code-runner.runInTerminal":true,
"files.encoding": "utf8"
}
4.测试
新建文件夹Hello
在Hello下新建.vscode/settings.json
Ctrl+Shift+P
打开命令板,输入Python: Select Interpreter
进行搜索
选择python
在Hello下新建hello.py
msg = "hello world" print(msg)
运行,右键
结果
E:\python\Hello>python -u "e:\python\Hello\Hello.py"
hello world