Master da Web
Back to Blog

MSBUILD : error MSB4132: The tools version "2.0" is unrecognized

LucasMarch 20, 20191 min readUpdated on November 4, 2023
MSBUILD : error MSB4132: The tools version "2.0" is unrecognized

It is common when installing packages in Node (npm install) to be required to install Python, Visual C++ Redistribute Kit and others. In some cases, Node conflicts with versions of the Visual C++ Redistribute Kit that are already installed.

A common error caused by Visual C++ Redistribute is“MSBUILD : error MSB4132: The tools version “2.0” is unrecognized“.

The good news is that the fix is quite simple. First of all, I recommend that you uninstall all the Visual C++ Redistributes on your computer:

Now run CMD (command prompt) as Administrator:

And run the following command to install Visual C++ Redistribute using npm:

npm install --global --production windows-build-tools

That’s it! You now have the version of Visual C++ Redistribute compatible with Node JS.

Share

Need Hosting or Servers?

Discover our VPS, dedicated servers and professional hosting solutions

Related Articles

View all articles