Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!feeder.news-service.com!feeder2.cambriumusenet.nl!feed.tweaknews.nl!194.109.133.85.MISMATCH!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.002 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python': 0.08; 'compiler.': 0.09; 'path.': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:80.91.229.12': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'received:lo.gmane.org': 0.09; 'setup.py': 0.09; 'subject:windows': 0.09; 'am,': 0.12; 'extracting': 0.16; 'subject:find': 0.16; 'subject:installing': 0.16; 'tarball': 0.16; 'tarfile': 0.16; 'track.': 0.16; 'wrote:': 0.16; 'subject:problem': 0.19; 'header:In-Reply-To:1': 0.22; 'specify': 0.24; 'skip:% 20': 0.30; 'tar': 0.30; 'thanks': 0.30; 'to:addr :python-list': 0.33; 'header:User-Agent:1': 0.34; 'header:X -Complaints-To:1': 0.35; 'file': 0.36; 'url:python': 0.36; 'created': 0.36; 'put': 0.37; 'install': 0.37; 'two': 0.37; 'received:org': 0.38; 'url:org': 0.38; 'subject:: ': 0.39; 'url:docs': 0.39; 'skip:- 10': 0.39; 'header:Mime-Version:1': 0.39; 'to:addr:python.org': 0.39; 'subject: (': 0.39; 'download': 0.60; 'your': 0.61; 'url:index': 0.61; 'order': 0.62; 'easy_install': 0.84; 'subject:skip:v 10': 0.84; 'url:install': 0.84 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Gelonida N Subject: Re: problem installing psyco on windows (Unable to find vcvarsall.bat) Date: Thu, 11 Aug 2011 13:01:25 +0200 References: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: unicorn.dungeon.de User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.18) Gecko/20110617 Lightning/1.0b2 "" In-Reply-To: X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 31 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1313060500 news.xs4all.nl 23976 [2001:888:2000:d::a6]:35924 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:11204 On 08/11/2011 05:24 AM, Miki Tebeka wrote: > You can download the sources tarball and when building specify the compiler. > See http://docs.python.org/install/index.html#gnu-c-cygwin-mingw Your answer put me on the right track. This works: - downloading mingw - downloading and extracting the tarfile the tar file - python setup.py build --compiler=mingw32 - python setup.py install In order to directly use pip / easy_install I created the file %USERPROFILE%\pydistutils.cfg with following two contents: [build] compiler=mingw32 and added mingw to my search path. now in can directly type pip install psyco Thanks again