vscode 如何让.py文件默认使用python编译 让.c文件默认使用gcc
时间: 2023-05-28 21:03:35 浏览: 170
要让 VS Code 中的 .py 文件默认使用 Python 编译,可以按照以下步骤进行设置:
1. 打开 VS Code,点击左侧菜单栏的“文件”(File),然后选择“首选项”(Preferences)和“设置”(Settings)。
2. 在搜索栏中输入“python.pythonPath”,然后找到“Python Path”选项。
3. 在“Python Path”选项中输入 Python 解释器的路径。例如,在 Windows 上,Python 3.9 的默认安装路径为“C:\Program Files\Python39\python.exe”。
4. 保存设置并关闭“设置”窗口。
现在,当您打开 .py 文件时,VS Code 将自动使用 Python 解释器来编译和运行它们。
要让 .c 文件默认使用 gcc 编译器,可以按照以下步骤进行设置:
1. 打开 VS Code,点击左侧菜单栏的“文件”(File),然后选择“首选项”(Preferences)和“设置”(Settings)。
2. 在搜索栏中输入“terminal.integrated.shell.windows”,然后找到“Integrated Terminal > Shell: Windows”选项。
3. 在“Integrated Terminal > Shell: Windows”选项中输入 gcc 编译器的路径。例如,在 Windows 上,MinGW 的默认安装路径为“C:\MinGW\bin\gcc.exe”。
4. 保存设置并关闭“设置”窗口。
现在,当您打开 .c 文件时,VS Code 将自动使用 gcc 编译器进行编译和运行。要运行编译后的程序,请在集成终端中输入“.\a.exe”(Windows 平台)或“./a.out”(Linux 平台)。
阅读全文