Not exactly programming related, but about an error I am facing while trying to install a python package using python setup.py install.
I have downloaded the tar file for PyML package. Then after extracting I have done below steps:
On DOS prompt set the variable as below:
SET VS90COMNTOOLS=%VS110COMNTOOLS%
Go to the directory having setup.py in the extracted PyML folder and run:
python setup.py build
python setup.py install
But on both steps I get errors as below, related to ext/hash_map no such file found.
C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\INCLUDE\xlocale(336) : wa rning C4530: C++ exception handler used, but unwind semantics are not enabled. S pecify /EHsc
e:\ajit\pyml-0.7.13.tar\dist\pyml-0.7.13\pyml\containers\ext\SparseDataSet.h(14) : fatal error C1083: Cannot open include file: 'ext/hash_map': No such file or directory
error: command '"C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\BIN\cl.e xe"' failed with exit status 2
What am I missing? How to resolve this error and install PyML.
Python version : 2.7.5 MSC v.1500 32 bit (Intel)] on win32 on Windows 8 machine.
PyML version:0.7.13