Home >Backend Development >Python Tutorial >Why Does My Python Installation Need Microsoft Visual C 14.0, and How Can I Fix It?
When attempting to install a Python package, you may encounter an error message: "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/". Despite updating to the latest version (14.27), the error persists. This guide provides a solution to resolve the issue, enabling successful package installation.
Step 1: Navigate to https://visualstudio.microsoft.com/visual-cpp-build-tools/ and download the Microsoft C Build Tools.
Step 2: Launch the installer and follow the on-screen instructions.
Step 3: If the update does not resolve the issue, click "Modify" to make further changes.
Step 4: Ensure that all necessary C components are checked for download.
Step 5: Restart your system and retry the Python package installation.
If the above steps do not resolve the issue, consider the following alternatives:
By implementing these measures, you should be able to resolve the "Microsoft Visual C 14.0 or greater is required" error and successfully install Python packages without any further issues.
The above is the detailed content of Why Does My Python Installation Need Microsoft Visual C 14.0, and How Can I Fix It?. For more information, please follow other related articles on the PHP Chinese website!