Reputation: 11
iam trying to install ReviewBoard on my windows system.i got this error error: Setup script exited with error: Unable to find vcvarsall.bat.please help
Upvotes: 0
Views: 877
Reputation: 169304
a) You need either a compiler, e.g. that bundled w/ MinGW, or
b) a pre-compiled executable for your OS and (ideally) Python version.
The latter might be tough to find, so if you go the former route it'll be roughly like this:
c:\MinGW\bin
to PATH environment variable (right-click My Computer...)c:\Python27\Lib\distutils
create file called distutils.cfg
and add the following:[build] compiler=mingw32
Upvotes: 1