visual studio - Unable to find vcvarsall.bat using Python 3.3 in Windows 8 -


i having issue when try run:

pip install numpy 

i get:

unable find vcvarsall.bat. 

i followed procedure: how use mingw's gcc compiler when installing python package using pip?.

  • i installed mingw c++ compiler option checked
  • i added mingw path

here path

 c:\python33\;%systemroot%\system32;%systemroot%;%systemroot%\system32\wbem;%systemroot%\system32\windowspowershell\v1.0\;c:\program files\widcomm\bluetooth software\;c:\python33\;c:\python33\scripts;c:\mingw\bin; 
  • i created distutils.cfg following lines

    [build] compiler=mingw32 

in here:

c:\python33\lib\distutils\distutils.cfg 

still getting same error, not sure doing wrong.

i using windows 8 system (32 bit), python 3.3. installed visual studio 12.0 want use ide python.

thanks help!

edit:

easy_install numpy 

works without glitch.

i using same setup , installing visual studio 2010 express easiest solution me. http://www.microsoft.com/visualstudio/eng/downloads#d-2010-express

python 3.3 built using vs 2010. http://blog.python.org/2012/05/recent-windows-changes-in-python-33.html


Comments