Software⏱️ 3 min read📅 2026-06-04

How to Fix: Pip error: Microsoft Visual C++ 14.0 is required

Remove pycrypto dependency from steem installation and uninstall cryptography package.

Quick Answer: Use pip to remove the cryptography package: `pip uninstall cryptography`. Then, install steem without pycrypto using `pip install --no-deps steem`.

The 'Pip error: Microsoft Visual C++ 14.0 is required' issue occurs when the pip installer cannot find the necessary Microsoft Visual C++ 14.0 compiler to install the steem package. This affects users who have Python 3 installed on their Windows 7 systems.

This error can be frustrating, especially when trying to install packages like pycrypto or cryptography. However, there are steps you can take to resolve this issue and continue using pip without these packages.

⚠️ Common Causes

  • The primary reason for this error is that the Microsoft Visual C++ 14.0 compiler is not installed on your system. This compiler is required by some packages, including steem, to build and install Python extensions.
  • An alternative reason could be that the pip installer is unable to find the necessary dependencies required for package installation.

✅ Best Solutions to Fix It

Installing Microsoft Visual C++ 14.0

  1. Step 1: Download the Microsoft Visual C++ 14.0 compiler from the official Microsoft website (https://www.microsoft.com/en-us/download/details.aspx?id=44278).
  2. Step 2: Follow the installation instructions provided with the download to install the compiler on your system.
  3. Step 3: Once installed, you can proceed with installing the steem package using pip.

Installing an alternative package manager

  1. Step 1: Consider installing an alternative package manager like conda (https://docs.continuum.io/conda/index.html) which does not require Microsoft Visual C++ 14.0 to install packages.
  2. Step 2: Use the conda package manager to install the steem package, as it may be able to find alternative dependencies or workarounds.

✨ Wrapping Up

To resolve the 'Pip error: Microsoft Visual C++ 14.0 is required' issue, you can try installing the Microsoft Visual C++ 14.0 compiler or using an alternative package manager like conda. By following these steps, you should be able to install the steem package without encountering this error.

Did this fix your problem?

If not, try searching for specific error codes.

🔍 Search Error Database

❓ Frequently Asked Questions