I am getting the error:
error: Microsoft Visual C++ 14.0 is required
When I try to install pycrypto module using the following command:
pip install pycrypto
How to solve this?
Seems like the setup tools for python aren’t up-to-date. Try upgrading them first and then install pycrypto
pip install --upgrade setuptools pip install pycrypto