I just stumbled onto this issue accessing some Python libraries: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools". The latest link to that is actually here: https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2019
When you begin the installer, it will have several "options" enabled which will balloon the install size to 5gb. If you have Windows 10, you'll need to leave selected the "Windows 10 SDK" option as mentioned here, and if you have Windows 11, you'll need to leave selected the "Windows 11 SDK" option.

I hope it helps save others time!
2025/07 Updated Link: https://visualstudio.microsoft.com/downloads/#title-build-tools-for-visual-studio-2022
Answer from Aaron Belchamber on Stack OverflowI just stumbled onto this issue accessing some Python libraries: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools". The latest link to that is actually here: https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2019
When you begin the installer, it will have several "options" enabled which will balloon the install size to 5gb. If you have Windows 10, you'll need to leave selected the "Windows 10 SDK" option as mentioned here, and if you have Windows 11, you'll need to leave selected the "Windows 11 SDK" option.

I hope it helps save others time!
2025/07 Updated Link: https://visualstudio.microsoft.com/downloads/#title-build-tools-for-visual-studio-2022
The current version (2023/09/14) is Build Tools for Visual Studio 2022. It's an online installer, you need to include at least the individual components:
- VC++ 2022 version xx.x tools
- Windows SDK to use standard libraries.
For updated Windows 10 or Windows 11: use the new winget cli
Just copy and paste that command in cmd, powershell or Run (WinKey + R).
Windows 10 SDK
winget install Microsoft.VisualStudio.2022.BuildTools --force --override "--wait --passive --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 --add Microsoft.VisualStudio.Component.Windows10SDK"
Windows 11 SDK
winget install Microsoft.VisualStudio.2022.BuildTools --force --override "--wait --passive --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 --add Microsoft.VisualStudio.Component.Windows11SDK.26100"
The above commands will download and run the installer with the switches passed after --override.
The --add will add specific features when installing, in this case:
Microsoft.VisualStudio.Component.VC.Tools.x86.x64Microsoft.VisualStudio.Component.Windows10SDKorMicrosoft.VisualStudio.Component.Windows11SDK.26100
Within Microsoft's docs you can find the IDs of the features available for the Visual Studio Build Tools and in this section also learn more about other parameters available for the installer.
Is Microsoft C++ Build Tools - Visual Studio free for commercial use
C++ build tools
Visual Studio Build Tools license
Microsoft's own command line walkthrough suggests installing only the build tools as an option.
More on reddit.comTo complete this walkthrough, you must have installed either Visual Studio and the optional Desktop development with C++ workload, or the command-line Build Tools for Visual Studio...
The Build Tools for Visual Studio installs only the command-line compilers, tools, and libraries you need to build C and C++ programs. It's perfect for build labs or classroom exercises and installs relatively quickly. To install only the command-line tools, look for Build Tools for Visual Studio on the Visual Studio Downloads page.
VS 2026 18.0 / MSVC Build Tools 14.50 released for production use
Videos
I am using a program which requires the c++ build tools from visual studio but it does not seem the have it in the community version for 2022. Is there an older version or somewhere else i can get the build tools from?
The default installation options when installing Rust on Windows require the Visual Studio Build Tools. I read the license for the Build Tools and noticed section 1, which says:
You may install and use any number of copies of the software to use solely with Visual Studio Community, Visual Studio Professional, and Visual Studio Enterprise, to develop and test your applications.
Does this mean that I have to install Visual Studio, or does it mean something else?
Microsoft's own command line walkthrough suggests installing only the build tools as an option.
To complete this walkthrough, you must have installed either Visual Studio and the optional Desktop development with C++ workload, or the command-line Build Tools for Visual Studio...
The Build Tools for Visual Studio installs only the command-line compilers, tools, and libraries you need to build C and C++ programs. It's perfect for build labs or classroom exercises and installs relatively quickly. To install only the command-line tools, look for Build Tools for Visual Studio on the Visual Studio Downloads page.
Sure does read that way.