Reputation: 4149
Cython version is 0.13, Python 3.1 I have tried all "solutions" in Cython FAQ, but to no avail. My version of Visual Studio is 7.1 and its directory doesn't contain vcvarsall.bat. Is this problem have a solution?
Upvotes: 4
Views: 6859
Reputation: 66709
SO search and you will find ample discussion on this.
[Edit: based on comment below]
When you run setup.py install on windows, distutils looks for vcvarsall.bat to run.
About vcvarsall.bat
VCVarsall.bat is Visual Studio Command Prompt tool in Visual Studio. It allows you to set various options for the integrated development environment (IDE) as well as build, debug, and deploy projects from the command line.
What if it does not find this file
Solution 1: Hunt the file
Upvotes: 2