I'm trying to install dulwich for bzr-git. now, I use Python 2.6 based bazaar. (I use msys.)

My steps are as follows:

$ bzr branch lp:dulwich
$ cd dulwich/
$ python setup.py install
running install
running build
running build_py
creating build

:
:

creating build\lib.win32-2.6\dulwich\tests
:
:
running build_ext
building 'dulwich._objects' extension
error: Unable to find vcvarsall.bat

If you know any hints, tell me please.

link|improve this question
1  
For future reference it would be nice to see on what platform do you use this. – Török Gábor Aug 31 '11 at 10:17
feedback

6 Answers

I found the solution. I had the exact same problem, and error, installing 'amara'. I had mingw32 installed, but distutils needed to be configured.

  1. I have python 2.6 that was already installed.
  2. Installed mingw32 to C:\programs\mingw\
  3. Add mingw32's bin directory to your environment variable: append PATH with c:\programs\MinGW\bin;
  4. Edit ( create if not existing ) distutils.cfg located at C:\Python26\Lib\distutils\distutils.cfg to be:

    [build]
    compiler=mingw32

  5. Now run "easy_install.exe amara".

( Make sure environment is set by opening a new cmd.exe . Depending on OS, you might have to reboot for it to take effect? )

link|improve this answer
1  
'[build]' and 'compiler=mingw32' should be on two separate lines. The markup seems to have messed it slightly. – Jonathan Hartley Jul 14 '10 at 9:15
8  
This works great for Python2.6, but for some reason I can't get it to work on Python2.7. It works if I downloading my package source and install using 'python setup.py install --compile=mingw32', but for some reason using easy_install or pip still tries to find vcvarsall. – Jonathan Hartley Jul 16 '10 at 16:11
I finally got scikits.image to install in Python(x,y) 2.7 by adding C:\msysgit\mingw\mingw32\bin and C:\msysgit\mingw\bin to the user PATH and restarting Spyder before running pip install again – endolith Nov 26 '11 at 6:11
feedback

You can install compiled version from http://www.lfd.uci.edu/~gohlke/pythonlibs/

link|improve this answer
1  
Thanks You! I should have this page bookmarked! – Saher Jan 21 at 18:44
feedback

http://blog.eddsn.com/2010/05/unable-to-find-vcvarsall-bat/

link|improve this answer
thanks this worked for me – robert king Nov 16 '11 at 8:59
Although it did stop my ubuntu from booting (i had wubi installed ubuntu within windows..) – robert king Jan 9 at 21:33
feedback

Looks like its looking for VC compilers, so you could try to mention compiler type with -c mingw32, since you have msys

python setup.py install -c mingw32
link|improve this answer
3  
Thanks for your help. But I cannnot install it yet. $ python setup.py install -c mingw32 usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...] or: setup.py --help [cmd1 cmd2 ...] or: setup.py --help-commands or: setup.py cmd --help error: invalid command 'mingw32' Next, I installed ".NET Framework SDK Version 1.1". Then, I tried this command; $ python setup.py build --compiler=mingw32 install And error code was ; error: command 'gcc' failed with exit status 1 If you know any suggestions, tell me please. Thanks Okada – okada May 13 '10 at 1:59
feedback

I just had this same problem, so I'll tell my story here hoping it helps someone else with the same issues and save them the couple of hours I just spent:

I have mingw (g++ (GCC) 4.6.1) and python 2.7.3 in a windows 7 box and I'm trying to install PyCrypto.

It all started with this error when running setup.py install:

error: Unable to find vcvarsall.bat

Easily solved after googling the error by specifying mingw as the compiler of choice:

setup.py install build --compiler=mingw32`

The problem is that then I got a different error:

configure: error: cannot run C compiled programs.

It turns out that my anti-virus was blocking the execution of a freshly compiled .exe. I just disabled the anti-virus "resident shield" and went to the next error:

cc1.exe: error: unrecognized command line option '-mno-cygwin' 
error: command 'gcc' failed with exit status 1

This solved it: "Either install a slightly older version of MinGW, or edit distutils\cygwinccompiler.py in your Python directory to remove all instances of -mno-cygwin." (from here)

Now, I can finally start working.

link|improve this answer
You will also need a MinGW-compatible version of the Python library. See eli.thegreenplace.net/2008/06/28/… for more information – Gili May 22 at 15:16
feedback

For Windows installations:

While running setup.py for for package installations... Python 2.7 searches for an installed Visual Studio 2008. You can trick Python to use Visual Studio by setting

>SET VS90COMNTOOLS=%VS100COMNTOOLS%

before calling setup.py.

link|improve this answer
Doesn't work: error: \Microsoft was unexpected at this time. – Gili May 22 at 14:44
It did for me :( – fmuecke May 22 at 19:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.