Path: csiph.com!newsfeed.hal-mli.net!feeder3.hal-mli.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!news.stack.nl!newsfeed.xs4all.nl!newsfeed5.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; 'package,': 0.03; 'seemed': 0.07; 'python': 0.08; 'received:mail-lpp01m010-f46.google.com': 0.09; 'setup.py': 0.09; 'sure,': 0.09; 'top-level': 0.09; 'files.': 0.09; '2.7': 0.13; '"python': 0.15; '3.2.': 0.16; 'install".': 0.16; 'packages?': 0.16; 'setuptools': 0.16; 'soup': 0.16; 'subject:expression': 0.16; 'subject:regular': 0.16; 'cc:addr:python-list': 0.16; 'wed,': 0.17; 'wrote:': 0.18; 'cc:no real name:2**0': 0.21; 'header:In-Reply-To:1': 0.22; 'versions': 0.23; "wasn't": 0.25; 'cc:2**0': 0.26; 'module': 0.26; 'stuff': 0.26; 'work.': 0.27; 'separate': 0.28; 'version,': 0.28; "i'm": 0.28; 'message-id:@mail.gmail.com': 0.29; 'installing': 0.29; 'installed': 0.29; 'cc:addr:python.org': 0.29; 'pm,': 0.29; 'fork': 0.30; 'navigate': 0.30; "didn't": 0.30; 'subject:?': 0.31; 'read,': 0.31; 'file.': 0.31; 'version': 0.32; 'received:209.85.215.46': 0.32; "i've": 0.32; 'idea': 0.32; 'there': 0.33; 'file': 0.34; 'subject:What': 0.34; 'something': 0.35; 'folder': 0.35; 'install': 0.35; 'two': 0.36; 'went': 0.37; 'run': 0.37; 'but': 0.37; 'reference': 0.37; 'received:google.com': 0.37; 'using': 0.37; 'received:209.85': 0.38; 'bunch': 0.38; 'too,': 0.38; 'should': 0.38; 'files': 0.39; 'ok,': 0.39; 'received:209.85.215': 0.39; 'received:209': 0.39; 'called': 0.40; 'john': 0.61; 'subject:best': 0.67; 'beautiful': 0.71; 'subject:this': 0.74; '2.7.': 0.84; 'subject:write': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=TtGJ360AxnN5AvaxDEWapPWrfw3pGuID/cmXk5pqiRM=; b=I7Xre7+y4YHNUVQFdDd3HkcBQhH8Yq3d8iKJQmTTxJqTT49aG+kahpZgKf9dAtthd/ Ls3zbkCG4bU4/l0mfVUN4JYt70bjJgoOCGlPJnTDERHV4lPe//b163I03pbd3kzV7Rnz B8/QF+tWvoYgLuDUAjk6Xbwke+jAMUcTIXHIhk0ndPeMIhX0HrnY3is/mSt8cu8FH4lY UQV3OD55K2Fzp3kybyaWRt5UddT7nk6voWefPOsI/CT2syQCPGWlWVUccdf+0NnUVypL F5E2XS7ZRXLYBdQJyF19Vd1TFdjQ76gZCiKYjRoTXg014UPHXnwTjTQVlApadoKGqEsu RMFQ== MIME-Version: 1.0 In-Reply-To: References: <12783654.1174.1331073814011.JavaMail.geo-discussion-forums@yner4> From: Ian Kelly Date: Wed, 7 Mar 2012 14:01:16 -0700 Subject: Re: What's the best way to write this regular expression? To: John Salerno Content-Type: text/plain; charset=ISO-8859-1 Cc: python-list@python.org 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: 22 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1331154111 news.xs4all.nl 6949 [2001:888:2000:d::a6]:43607 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:21343 On Wed, Mar 7, 2012 at 1:39 PM, John Salerno wrote: > Ok, first major roadblock. I have no idea how to install Beautiful > Soup or lxml on Windows! All I can find are .tar files. Based on what > I've read, I can use the easy_setup module to install these types of > files, but when I went to download the setuptools package, it only > seemed to support Python 2.7. I'm using 3.2. Is 2.7 just the minimum > version it requires? It didn't say something like "2.7+", so I wasn't > sure, and I don't want to start installing a bunch of stuff that will > clog up my directories and not even work. There is a fork of setuptools called "distribute" that supports Python 3. > What's the best way for me to install these two packages? I've also > seen a reference to using setup.py...is that a separate package too, > or is that something that comes with Python by default? setup.py is a file that should be included at the top-level of the .tar files you downloaded. Generally, to install something in that manner, you would navigate to that top-level folder and run "python setup.py install". If you have multiple Python versions installed and want to install the package for a specific version, then you would use that version of Python to run the setup.py file.