I have created a virtual environment in windows to run Python 3.4.3. I tried installing Scrapy package using two ways:
Using pip command (with latest pip 9.0) by entering in command line as follows:
pip install scrapy
By downloading zipped setup file from scrapy website and then installing it by entering in command line as follows:
python setup.py install
With both the ways, I am getting an error displaying Microsoft Visual C++ 10.0 is required (vcvarsall.bat). I tried installing Microsoft Visual C++ 10.0 but during installation it displayed that I already had Microsoft Visual C++ 14.0 installed and it could not continue the installation of version 10.0 without uninstalling 14.0 first. Unfortunately, my other programs depends on ver 14.0 and I cannot uninstall it. I am using Windows 7 64-bit.
How can I resolve this error?
Update: I have successfully re-installed Microsoft Visual C++ 10.0 x64 redistributable package but unfortunately I am not able to locate the its folder in Program files or Program files (x86) [obviously not here!] to set the environment variables as suggested in other in similar posts in Stackover flow.