Krity Haque Charu
Krity Haque Charu

Reputation: 21

VS Code: Error while installing 'C/C++' extension. Please check the log for more details

While downloading any extension, I am having above error. I uninstalled the vs-code and installed it again, but the same problem occurs. How to solve this problem?

Upvotes: 2

Views: 12400

Answers (2)

Piotr Rzymski
Piotr Rzymski

Reputation: 31

Running as admin worked for me after experiencing the same issue.

Upvotes: 2

safira
safira

Reputation: 115

you can add extension via terminal. here are the steps to install the GCC compiler on Ubuntu:

  1. sudo apt update
  2. sudo apt install build-essential the command installs a bunch of new packages including gcc, g++ and make.
  3. to check the version type the command gcc --version

Upvotes: 4

Related Questions