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


Groups > comp.lang.python > #57455

Re: question

Path csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail
Return-Path <python-python-list@m.gmane.org>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.000
X-Spam-Evidence '*H*': 1.00; '*S*': 0.00; 'third-party': 0.04; 'cpython': 0.05; 'binary': 0.07; 'compiler': 0.07; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'whatever.': 0.09; 'windows,': 0.09; 'subject:question': 0.10; 'python': 0.11; '2.7': 0.14; '3.3,': 0.16; 'background,': 0.16; 'compiler.': 0.16; 'itself,': 0.16; "microsoft's": 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'using,': 0.16; 'fix': 0.17; 'wrote:': 0.18; 'library': 0.18; 'trying': 0.19; 'written': 0.21; 'code,': 0.22; 'comfortable': 0.22; 'header:User-Agent:1': 0.23; 'error': 0.23; 'library,': 0.24; 'package.': 0.24; 'guys': 0.24; 'versions': 0.24; '(or': 0.24; 'source': 0.25; 'extension': 0.26; 'url:edu': 0.26; 'header:X-Complaints-To:1': 0.27; 'related': 0.29; 'code': 0.31; 'getting': 0.31; 'towards': 0.31; 'usually': 0.31; '(usually': 0.31; 'install,': 0.31; 'libraries': 0.31; 'probably': 0.32; 'says': 0.33; 'could': 0.34; 'but': 0.35; 'there': 0.35; 'version': 0.36; 'in.': 0.36; 'installing': 0.36; 'charset:us-ascii': 0.36; 'step': 0.37; 'expected': 0.38; 'received:99': 0.38; 'whatever': 0.38; 'to:addr:python-list': 0.38; 'visual': 0.39; 'to:addr:python.org': 0.39; 'unable': 0.39; 'received:org': 0.40; 'free': 0.61; "you're": 0.61; 'first': 0.61; 'name': 0.63; 'such': 0.63; 'more': 0.64; 'within': 0.65; 'precompiled': 0.84; 'this...': 0.84; 'responses': 0.93
X-Injected-Via-Gmane http://gmane.org/
To python-list@python.org
From Dave Angel <davea@davea.name>
Subject Re: question
Date Thu, 24 Oct 2013 13:36:32 +0000 (UTC)
References <CADfpHjDUw8oPdDgdwbNZeP4ORFkxRR_2uSuPOE1oy02O0erPfw@mail.gmail.com>
Mime-Version 1.0
Content-Type text/plain; charset=US-ASCII
Content-Transfer-Encoding 7bit
X-Gmane-NNTP-Posting-Host 99-43-76-189.lightspeed.hstntx.sbcglobal.net
User-Agent XPN/1.2.6 (Street Spirit ; Linux)
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.15
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list/>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.1470.1382621821.18130.python-list@python.org> (permalink)
Lines 42
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1382621821 news.xs4all.nl 15884 [2001:888:2000:d::a6]:52561
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python:57455

Show key headers only | View raw


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

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

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

csiph-web