Path: csiph.com!usenet.pasdenom.info!news.albasani.net!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!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; 'subject:Windows': 0.02; 'url:pypi': 0.03; 'received:209.85.223': 0.03; 'url:bitbucket': 0.05; 'msi': 0.09; 'cc:addr:python-list': 0.11; 'python': 0.11; "wouldn't": 0.14; 'windows': 0.15; 'command.': 0.16; 'ez_setup.py': 0.16; 'from:addr:pobox.com': 0.16; 'from:addr:skip': 0.16; 'setuptools,': 0.16; 'url:pip': 0.16; 'url:py': 0.16; 'url:setuptools': 0.16; 'sender:addr:gmail.com': 0.17; 'command': 0.22; 'cc:addr:python.org': 0.22; 'install': 0.23; 'skip': 0.24; 'question': 0.24; 'cc:2**0': 0.24; 'this:': 0.26; 'header:In-Reply-To:1': 0.27; 'message-id:@mail.gmail.com': 0.30; '(on': 0.31; 'url:python': 0.33; 'subject:the': 0.34; 'received:209.85': 0.35; 'something': 0.35; '(2)': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'there': 0.35; 'possible': 0.36; 'url:org': 0.36; 'received:209': 0.37; 'version,': 0.38; 'new': 0.61; 'person,': 0.68; 'url:4': 0.69; 'manner': 0.72; 'imagining': 0.84; 'installer': 0.84; 'subject:Using': 0.84; 'trick?': 0.84; 'subject:Setting': 0.96 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=wfJ69cQBC0n3sHWf8GuOVmZ32HaKDxWimNnYEhi2HN0=; b=xJzHpCeWXQ/dL4lDQDDhv+w53lFx5Sba/zDqeUQbiJIbTdYIiB9VO2aJaK/OWNVb96 4Xr7AEtM6G3/8W8qNs4SxdfBe9kW45fOuUXkVwCihLKcHRiLKSLcK1bur2gCyyJKIEKb Z4pl6S4lg3qFTkO4zbBVcwfn+n10KXf99q3uWvVru653NDjxGlcnfDVknuTC578qeh6G vEIA/iaYjCn/53pCFHDW2dXZlNWCEc7OlgOPPBi22E91YvzgpiDgsOReQedh5KmBg0f8 6Ysnvo/6ei50UGTnPCLWWji6fJvj2B7QTViEXeLUoeKN7E2293T9QYLAmMKkxwoUO/43 csTA== MIME-Version: 1.0 X-Received: by 10.43.118.198 with SMTP id fr6mr27620icc.70.1379621216667; Thu, 19 Sep 2013 13:06:56 -0700 (PDT) Sender: skip.montanaro@gmail.com In-Reply-To: <567c7442-313f-4df3-8fc4-ff3256aabc46@googlegroups.com> References: <567c7442-313f-4df3-8fc4-ff3256aabc46@googlegroups.com> Date: Thu, 19 Sep 2013 15:06:56 -0500 X-Google-Sender-Auth: vyyziqpoYXXkPqTwzuGJX67LY5c Subject: Re: Using the MSI installer on Windows: Setting PATH and Setuptools From: Skip Montanaro To: cython@m.allo.ws Content-Type: text/plain; charset=UTF-8 Cc: Python X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 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: 12 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1379621239 news.xs4all.nl 15895 [2001:888:2000:d::a6]:36450 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:54445 > Question 4: If the Windows MSI installer indeed lacks Setuptools, what is the best way to install it from the command line in a future-proof manner (on Windows)? I am imagining something like this: > > wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py > python ez_setup.py > > However, (1) wget is not a Windows command. What is the Windows command? And (2) is that URL the best possible URL? Or will that URL only download an old version, and there is a better URL for new versions? I am not a Windows person, but wouldn't pip do the trick? https://pypi.python.org/pypi/pip/1.4.1 Skip