Hi Optimus_PrimeDL

This is the link to download and install the C++ Build Tools, try installing that, then restart your PC . . .

https://visualstudio.microsoft.com/visual-cpp-b...

Offline Installer:

https://aka.ms/vs/16/release/vs_buildtools.exe

Answer from DaveM121 on learn.microsoft.com
Discussions

How to solve "error: Microsoft Visual C++ 14.0 or greater is required" when installing Python packages? - Stack Overflow
Get it with "Microsoft C++ Build ...ualstudio.microsoft.com/visual-cpp-build-tools/ I already updated that and have the latest version of 14.27 but the problem is throwing the same error. ... FrozenAra the problem is i already updated that but and have the latest version of 14.27 the problem is throwing same error ... Then please add that information to your post. And please try to reformat your question so its more readable. ... python 3.10.2 (Win10) same issue exactly. After downloading Build Tools ... More on stackoverflow.com
🌐 stackoverflow.com
Microsoft Visual C++ 14.0 or greater is required
You can get the runtime from the MS downloads page. Install the VS 2015/2017/2019 redist as it is the latest version. 4 comments Show comments for this answer Report a concern ... In the error, it was mentioned that Build tools 14.0 or greater is required, but i have figured out the problem, ... More on learn.microsoft.com
🌐 learn.microsoft.com
4
5
python - Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": http://landinghub.visualstudio.com/visual-cpp-build-tools - Stack Overflow
I have tried all methods mentioned on the internet but there is no use. I am trying to install misaka by writing pip install misaka it keeps complaining by showing the same message. I have download... More on stackoverflow.com
🌐 stackoverflow.com
Error: Microsoft Visual C++ 14.0 is required
Downgrade your python to 3.9 then you will not need to install Visual C++ because that python version has pandas precompiled for it available. More on reddit.com
🌐 r/learnpython
5
1
October 20, 2021
🌐
GitHub
gist.github.com › aljbri › d129e07a72f572aec6eaf9680b6d5f59
Microsoft Visual C++ 14.0 Build Tools · GitHub
Just in case anyone else stumbles across this thread: I had success by downloading the current VS Build Tools installer from https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2022 and running the application from the ...
Top answer
1 of 11
368

Go to this link and download Microsoft C++ Build Tools:
https://visualstudio.microsoft.com/visual-cpp-build-tools/

Open the installer, then follow the steps.

You might have something like this, just download it or resume.

If updating above doesn't work then you need to configure or make some updates here. You can make some updates here too by clicking "Modify".

Check that and download what you need there or you might find that you just need to update Microsoft Visual C++ as stated on the error, but I also suggest updating everything there because you might still need it on your future programs. I think those with the C++ as I've done that before and had a similar problem just like that when installing a python package for creating WorldCloud visualization.


UPDATE: December 28, 2020

You can also follow these steps here:

  1. Select: Workloads → Desktop development with C++
  2. Then for Individual Components, select only:
    • Windows 10 SDK
    • C++ x64/x86 build tools

You can also achieve the same automatically using the following command:

vs_buildtools.exe --norestart --passive --downloadThenInstall --includeRecommended --add Microsoft.VisualStudio.Workload.NativeDesktop --add Microsoft.VisualStudio.Workload.VCTools --add Microsoft.VisualStudio.Workload.MSBuildTools

Reference:
https://www.scivision.dev/python-windows-visual-c-14-required

2 of 11
21

This error can happen when using the latest version of Python, e.g. 3.13.2, because the package wheels were only built for earlier versions of Python. So you have to build them by yourself.

Thankfully, you may download wheels built by a third-party and shared online at:

  • https://www.lfd.uci.edu/~gohlke/pythonlibs/.

This allows:

  • to bypass the download of GB of Visual Studio Build Tools,
  • to avoid downgrading your version of Python.

Typically, if the error message is the following:

Failed to build frozenlist multidict

Then you should download:

  • frozenlist: frozenlist‑1.3.0‑py3‑none‑any.whl
  • multidict: multidict‑6.0.2‑py3‑none‑any.whl

And run locally:

pip install .\frozenlist-1.3.0-py3-none-any.whl
pip install .\multidict-6.0.2-py3-none-any.whl 

Finally, resume the installation which was previously failing:

pip install -r .\requirements.txt 

This time, the installation should succeed.

🌐
Python
wiki.python.org › moin › WindowsCompilers
WindowsCompilers - Python Wiki
This is a standalone version of Visual C++ 14.0 compiler, you don't need to install Visual Studio 2015. Install Microsoft Visual C++ Build Tools 2015.
Find elsewhere
🌐
Visual Studio
visualstudio.microsoft.com › downloads
Visual Studio & VS Code Downloads for Windows, Mac, Linux
January 26, 2026 - Supported projects include: ASP.NET, Azure, C++ desktop, ClickOnce, containers, .NET Core, .NET Desktop, Node.js, Office and SharePoint, Python, TypeScript, Unit Tests, UWP, WCF, and Xamarin. Use of this tool requires a valid Visual Studio license, unless you are building open-source dependencies for your project.
🌐
Medium
medium.com › @itylergarrett.tag › install-microsoft-visual-c-14-setting-up-visual-studio-build-tools-2017-757cf6b37a80
install microsoft visual C++ 14 — setting up visual studio build tools 2017 | by Tyler Garrett | Medium
October 19, 2018 - https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2017 shows you what to download. Run the installer, don’t select anything other than default settings, and click install.
🌐
Microsoft
devblogs.microsoft.com › dev blogs › c++ team blog › microsoft c++ (msvc) build tools v14.51 preview released: how to opt in
Microsoft C++ (MSVC) Build Tools v14.51 Preview Released: How to Opt In - C++ Team Blog
February 19, 2026 - Today we are releasing the first preview of the Microsoft C++ (MSVC) Build Tools version 14.51. This update, shipping in the latest Visual Studio 2026 version 18.4 Insiders release, introduces many C++23 conformance changes, bug fixes, and runtime performance improvements.
🌐
Visual Studio Code
code.visualstudio.com › docs › cpp › config-msvc
Configure VS Code for Microsoft C++
November 3, 2021 - From the Visual Studio Downloads page, scroll down until you see Tools for Visual Studio under the All Downloads section and select the download for Build Tools for Visual Studio 2022.
🌐
Reddit
reddit.com › r/learnpython › error: microsoft visual c++ 14.0 is required
r/learnpython on Reddit: Error: Microsoft Visual C++ 14.0 is required
October 20, 2021 -

Hi, I am trying to download the pandas package and it keeps giving me this error message: "error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": https://visualstudio.microsoft.com/downloads/. What should I do?

I have downloaded the newest package according to the link, but it seems to be newer version 14.29.30135. I have already tried to research this problem, but all the discussion have been older and have of the links for download didn't work.

I will be grateful for any help.

🌐
Microsoft Learn
learn.microsoft.com › en-us › cpp › overview › what-s-new-for-msvc
What's new for MSVC Build Tools | Microsoft Learn
November 11, 2025 - Visual Studio 2026 version 18.0 ships with the v145 platform toolset for MSBuild C++ projects and Microsoft C++ (MSVC) Build Tools version 14.50, which offers the best conformance, build performance, and runtime performance story yet. To access all the new language features, build with /std:c++latest.
🌐
SciVision
scivision.dev › python-windows-visual-c-14-required
Python 3 Microsoft Visual C++ 14.0 is required | Scientific Computing
October 5, 2023 - How to fix the error Visual C++ 14.0 required by installing Microsoft Visual C++ Build Tools.
🌐
Visual Studio
visualstudio.microsoft.com › vs › features › cplusplus
Visual Studio C/C++ IDE and Compiler for Windows - Microsoft
1 week ago - Build modern C and C++ apps for Windows using tools of your choice, including MSVC, Clang, CMake, and MSBuild · Contains C/C++ components for desktop, mobile, Linux, and game development ... By downloading, you agree to the licensing terms for the Visual Studio edition you select below.
🌐
Updatestar
microsoft-visual-c-build-tools.updatestar.com › home › development › microsoft visual c++ build tools
Microsoft Visual C++ Build Tools - Download
Microsoft Visual C++ Build Tools 14.0.25420.1
Download Microsoft Visual C++ Build Tools, free, virus-checked. Microsoft Visual C++ Build Tools provides a robust environment for developers to compile and …
Rating: 4 ​