I am trying to install numpy in python 3.5 under windows 10 with visual studio 2015 ultimate installed.
Short version: file vcvarsall.bat is missing fro
I met this problem when I was trying to build ujson package with python 2.7 (compiled with VS 2015).
There is this line:
majorVersion = int(s[:-2]) - 6
it sets majorVersion to 13, but the correct version for VS 2015 is 14. So you need add two line, for example:
if majorVersion == 13:
majorVersion = 14