c/c++ vscode 长时间下载扩展
c/c++ extension downloading for long time in vscode
我第一次在 vs 代码中使用 c++/c 扩展,点击安装 c/c++ 微软扩展后,我无法使用这个
**// Simple C++ program to display "Hello World"
// Header file for input output functions
#include<iostream>
using namespace std;
// main function -
// where the execution of program begins
int main()
{
// prints hello world
cout<<"Hello World";
return 0;
}**
您可以尝试手动下载扩展
转到 vscode cpp 工具发布页面 https://github.com/Microsoft/vscode-cpptools/releases
向下滚动并下载与您的 OS 对应的 .vsix 文件(在您的情况下是 win32)
look for your OS in a section like this
打开命令提示符并输入
code --install-extension <path to your downloaded .vsix file>
关闭再重新打开VSCode,扩展下载window应该不会再出现
我第一次在 vs 代码中使用 c++/c 扩展,点击安装 c/c++ 微软扩展后,我无法使用这个
**// Simple C++ program to display "Hello World"
// Header file for input output functions
#include<iostream>
using namespace std;
// main function -
// where the execution of program begins
int main()
{
// prints hello world
cout<<"Hello World";
return 0;
}**
您可以尝试手动下载扩展
转到 vscode cpp 工具发布页面 https://github.com/Microsoft/vscode-cpptools/releases
向下滚动并下载与您的 OS 对应的 .vsix 文件(在您的情况下是 win32) look for your OS in a section like this
打开命令提示符并输入
code --install-extension <path to your downloaded .vsix file>
关闭再重新打开VSCode,扩展下载window应该不会再出现