Skip to content

environment

#159: Find the Missing C++ Build Tools

On a freshly installed computer, I got this error message when I installed a package with pip:

error: Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools": https://visualstudio.microsoft.com/visual-cpp-build-tools/

This error shows up because pip needs to compile a few files as part of the installation, but there are no C++ build tools installed. Let us figure out how we can fix this problem.