Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
3  
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

7 Answers

For Windows installations:

While running setup.py for package installations Python 2.7 searches for an installed Visual Studio 2008. You can trick Python to use a newer Visual Studio by setting the correct path in VS90COMNTOOLS environment variable before calling setup.py.

If you have Visual Studio 2010 installed, execute

SET VS90COMNTOOLS=%VS100COMNTOOLS%

or with Visual Studio 2012 installed

SET VS90COMNTOOLS=%VS110COMNTOOLS%

share|improve this answer
1  
Doesn't work: error: \Microsoft was unexpected at this time. – Gili May 22 '12 at 14:44
13  
It did for me :( – fmuecke May 22 '12 at 19:33
1  
@Gili: It looks like this problem is due to spaces in the variable, try wrapping it within quotes. For me %VS100COMNTOOLS%="C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\Tools" – legends2k Oct 5 '12 at 11:44
6  
instead of ">SET ..." just use "SET ..." :) – naxa Oct 18 '12 at 10:22
2  
This won't work for many things, because Python relies on VS2008. Have a look at this answer: stackoverflow.com/questions/6551724/… – shezi Feb 16 at 11:35
show 4 more comments

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. I installed mingw32 to C:\programs\mingw\
  3. Add mingw32's bin directory to your environment variable: append c:\programs\MinGW\bin; to the PATH
  4. Edit (create if not existing) distutils.cfg file 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.

share|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
18  
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
2  
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
8  
There is no need ever to reboot because of an environment variable change. Opening a new cmd.exe process is enough. – Tomalak Jun 29 '12 at 8:47

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

share|improve this answer
3  
+1 This is a great page for Windows users – nima Oct 18 '12 at 16:12
3  
+1 this is a great link for python developers on windows – Jakob Feb 7 at 8:20

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.

share|improve this answer
2  
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 '12 at 15:16

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
share|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
7  
Just to clairify, the command that works is: python setup.py build --compiler=mingw32 followed by python setup.py install – Emil Stenström Jun 12 '12 at 21:13

I have python 2.73 and windows 7 .The solution that worked for me was:

  1. Added mingw32's bin directory to environment variable: append PATH with C:\programs\mingw\bin;
  2. Created distutils.cfg located at C:\Python27\Lib\distutils\distutils.cfg containing:

    [build]
    compiler=mingw32
    

To deal with MinGW not recognizing the -mno-cygwin flag anymore, remove the flag in C:\Python27\Lib\distutils\cygwincompiler.py line 322 to 326, so it looks like this:

  self.set_executables(compiler='gcc -O -Wall',
                         compiler_so='gcc -mdll -O -Wall',
                         compiler_cxx='g++ -O -Wall',
                         linker_exe='gcc',
                         linker_so='%s %s %s'
                                    % (self.linker_dll, shared_option,
                                       entry_point))
share|improve this answer

Maybe somebody can be interested, the following worked for me for the py2exe package. (I have windows 7 64 bit and portable python 2.7, Visual Studio 2005 Express with Windows SDK for Windows 7 and .NET Framework 4)

set VS90COMNTOOLS=%VS80COMNTOOLS%

then:

python.exe setup.py install

share|improve this answer
Dave, I don't think your question is for me, is it? – Stefano Fenu Apr 14 at 17:15
No, you're right, I'm not sure what happened, I'll delete the original comment. – Dave Challis Apr 15 at 10:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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