VSCode配置python环境
2021/7/3 11:21:25
本文主要是介绍VSCode配置python环境,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
目录- 1 setting.json
- 2 launch.json
- 3 task.json
setting.json
·是设置语言环境,launch.json
是设置执行环境来执行代码,tasks.json
是用来设置指令编译代码
1 setting.json
配置python
解释器,在vscode
界面内按下ctrl+shift+p
键,输入python
,选择python
解释器(python
属于解释语言,不需要编译成二进制中间语言,它是依赖解释器,解释一行运行一行)
然后选择python
解释器路径,点击确定后,就会在当前选中的文件夹内生成一个.vscode
文件夹且内有一个setting.json
文件
这只是生成一个setting.json
模板,可以按照自己需求添加,如下
{ "python.pythonPath": "D:\\Anaconda3\\envs\\python3", "workbench.colorTheme": "Monokai", "window.zoomLevel": 0, "explorer.confirmDelete": false, "editor.accessibilitySupport": "off", "editor.formatOnPaste": true, "editor.formatOnSave": false, "editor.formatOnType": false, "editor.showFoldingControls": "mouseover", // 控制编辑器是否显示缩进参考线。 "editor.renderIndentGuides": true, "editor.multiCursorModifier": "ctrlCmd", # 将原来的cmd.exe 替换为bash.exe 因为更喜欢bash.exe的操作 "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", "terminal.integrated.rendererType": "dom", "workbench.activityBar.visible": true, "python.jediEnabled": false }
2 launch.json
在vscode
页面点击运行和调试窗口,点击创建launch.json
就会自动创建一个launch.json
文件
{ "version": "0.2.0", "configurations": [ { "name": "Python: 当前文件", "type": "python", "request": "launch", "program": "${file}", "console": "integratedTerminal" } ] }
此时也是在.vscode
文件夹下生成的
或者再次模板上添加
{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "Python", "type": "python", "request": "launch", "stopOnEntry": false, "program": "${file}", "cwd": "${workspaceRoot}", "env": {}, "envFile": "${workspaceRoot}/.env", "debugOptions": [ "WaitOnAbnormalExit", "WaitOnNormalExit", "RedirectOutput" ] } ] }
3 task.json
在vscode
面板内选中 终端
—>配置任务...
->选择 使用模板创建 tasks.json
文件
选择Other
tasks.json文件生成完毕
这篇关于VSCode配置python环境的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-14Python编程入门指南
- 2024-11-13Python基础教程
- 2024-11-12Python编程基础指南
- 2024-11-12Python基础编程教程
- 2024-11-08Python编程基础与实践示例
- 2024-11-07Python编程基础指南
- 2024-11-06Python编程基础入门指南
- 2024-11-06怎么使用python 计算两个GPS的距离功能-icode9专业技术文章分享
- 2024-11-06Python 基础编程入门教程
- 2024-11-05Python编程基础:变量与类型