Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #57455 > unrolled thread

Re: question

Started byDave Angel <davea@davea.name>
First post2013-10-24 13:36 +0000
Last post2013-10-24 13:36 +0000
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: question Dave Angel <davea@davea.name> - 2013-10-24 13:36 +0000

#57455 — Re: question

FromDave Angel <davea@davea.name>
Date2013-10-24 13:36 +0000
SubjectRe: question
Message-ID<mailman.1470.1382621821.18130.python-list@python.org>
On 23/10/2013 16:24, Cesar Campana wrote:

> Hi!
>
> Im installing the python library for the version 2.7 but Im getting the
> error unable to find vcvarsall.bat
>
> I was looking on line but it says is related to Visual Studio...?
>
> Can you guys please help me to fix this...
>

The other responses were right-on.  But just in case you don't know some
of the background, let me try to fill it in.

Python itself, much of the standard library, and many of the third-party
extension libraries are written in C, completely or partly.

If you get source code for any such code, you're expected to compile it,
and on Windows, that usually means with Microsoft's C compiler,
usually found within Visual Studio.  There are free versions (usually
with the name "express" as part of their description) on Microsoft's
site.

vcvars.bat is the first step towards finding a particular version of
the compiler.

Now, if you don't have the right versionof that compiler (or any
version), you will probably be more comfortable using a precompiled
binary version of the package.  You still have to match the version
against whatever CPython you're using, 32 or 64 bit, 2.7 or 3.3, or
whatever.

Depending on just what you were trying to install, you could look for
such a binary package on python.org, on Stackoverflow, or on 
http://www.lfd.uci.edu/~gohlke/pythonlibs/


-- 
DaveA

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web