Reputation: 21
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
Reputation: 31
Running as admin worked for me after experiencing the same issue.
Upvotes: 2
Reputation: 115
you can add extension via terminal. here are the steps to install the GCC compiler on Ubuntu:
sudo apt update
sudo apt install build-essential
the command installs a bunch of new packages including gcc, g++ and make.gcc --version
Upvotes: 4