I have been trying to install Cython for Python 2.7 on my Window 7 system. In particular, I prefer everything in 64 bits. (In case you wonder, I need Cython because Cython i
I encountered this problem while trying to install pandas in 'develop' mode. I'm up & running now. My environment:
<-- "registered" as system's python distro using WinPython Control Panel applicationProblems encountered when running python setup.py develop:
Solution:
<-- this gives you basetsd.h<-- this gives you the 64-bit compilersC:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin\vcvars64.bat
to C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin\amd64\vcvarsamd64.bat. Observe the change in file name.C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin to PATH. This may not be required (I did so before re-installing the SDK w/ Headers & Libs; therefore, the necessity is unknown).At this point, running python setup.py develop completed successfully and python -c "import pandas; print pandas.__version__" resulted in the git tag I expected.
[EDIT] Further reading: