bycloudai / InstallVSBuildToolsWindows

Tutorial on how to install Microsoft C++ Build Tools

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How To Install VS Microsoft C++ Build Tools on Windows

This can be used for installing anything that requires C++ compiler on Windows.

Installation steps

  1. Download Microsoft C++ Build Tools from here
  2. Run the installer
  3. Get to this screen, click on install image
  4. Tick the top left C++ build tools, then the boxes on the right would show up. (May differ in versions) !image
  5. Press Install while downloading image
  6. After everything is installed, reboot your computer for it to take an effect.
  7. Add MSBuild Tools to your system environment by going to search bar and open Edit the System Environment VariablesUntitled
  8. Click on Environment Variables
    Untitled
  9. Double chlick on Path
    Untitled
  10. Press New and paste this line: (or version/location u installed your MVS BuildTools at)
    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin
    simple way to check if this is the right path is paste this file path and check if the location exists in your file explorer.
    Untitled
  11. and you are set!

About

Tutorial on how to install Microsoft C++ Build Tools