Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!news.stack.nl!newsfeed.xs4all.nl!newsfeed1.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.006 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'url:launchpad': 0.05; "subject:' ": 0.07; 'setup.py': 0.09; 'subject:2.7': 0.09; 'subject:How': 0.10; 'python': 0.11; 'windows': 0.15; '*should*': 0.16; '.py': 0.16; 'extension.': 0.16; 'luck!': 0.16; 'subject: \n ': 0.16; 'subject:access': 0.16; 'url:bazaar': 0.16; 'subject:python': 0.16; 'folder': 0.16; 'wrote:': 0.18; 'seems': 0.21; 'command': 0.22; 'install': 0.23; 'second': 0.26; 'downloaded': 0.26; 'header:In-Reply-To:1': 0.27; 'correct': 0.29; 'am,': 0.29; 'message-id:@mail.gmail.com': 0.30; "i'm": 0.30; '13,': 0.31; 'file': 0.32; 'open': 0.33; 'there,': 0.34; 'something': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'should': 0.36; 'to:addr:python-list': 0.38; 'though,': 0.39; 'to:addr:python.org': 0.39; 'how': 0.40; "you're": 0.61; 'finally': 0.65; 'within': 0.65; 'prompt': 0.68; 'started.': 0.68; 'unusual': 0.74; 'explorer': 0.84; 'contents.': 0.91 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 :content-type; bh=FMnTlRQRK3/C5kkeycSuogJ4OknDrQCitt1pPVSp7EI=; b=VPZEeKHydRWZwHmRWOGb3QkG0Wx99B/dcme6Z1drsv3RiwKEvAoWLEJoPDH6G4g5fd qGUBPheoZfxyMqYPnfrQJeCy+bJoi87LXsLzDOp+hyZjO54/KboqGDYCdZcQ1FYLSos2 1DUH+FIy1Yf7GzQlS8/EkSwzowJef8wy4gvZu6MoqVx/pmTsAMGVitfYoILR1w/uYyWj jXD4UrN9GTYnJ4GZbLL3coYsPxupbOwDqodpEf5wasbMfSkKB0uzWqIbl596bN9eiVXf dz5kQFEFpZvIjC+pX1nC2Gmb9hZyALu7mKP6bkglKLbMMiIEnBxEEC8fuG/mf5SPGdhP iSJw== X-Received: by 10.67.13.134 with SMTP id ey6mr65812208pad.44.1399998863712; Tue, 13 May 2014 09:34:23 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <81acc9a1-f3d5-4379-9b29-1be4966f6c35@googlegroups.com> References: <10313d81-01f2-48ed-951c-a5a6cccee65e@googlegroups.com> <7a908d5e-1e0e-4828-a3e0-172df735e6c3@googlegroups.com> <1ade4a7c-833c-44eb-982a-3e17ccbc64b1@googlegroups.com> <7b33a525-58ee-4009-94c4-f9ed69eb3af0@googlegroups.com> <81acc9a1-f3d5-4379-9b29-1be4966f6c35@googlegroups.com> From: Ian Kelly Date: Tue, 13 May 2014 10:33:43 -0600 Subject: Re: How do I access 'Beautiful Soup' on python 2.7 or 3.4 , console or idle versions. To: Python Content-Type: text/plain; charset=UTF-8 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: 21 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1399998868 news.xs4all.nl 2942 [2001:888:2000:d::a6]:55236 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:71501 On Tue, May 13, 2014 at 5:59 AM, Simon Evans wrote: > I can see no bs4 folder within the contents. > I can not see any setup.py file either, but this is how I downloaded it. You do have a setup.py in there, but your Windows explorer is showing it to you without the .py extension. Something unusual is happening with the download/extraction process though and you're missing the correct folder structure. If you take a look here, you can see what you *should* have after unzipping: http://bazaar.launchpad.net/~leonardr/beautifulsoup/bs4/files This approach seems to be unproductive though, so I'm going to second Mark's suggestion to just use pip: 1) Go to pip-installer.org and download the single file get-pip.py 2) Open a command prompt and cd to the folder you downloaded that file into. 3) python get-pip.py 4) pip install beautifulsoup4 And then you should finally be ready to get started. Good luck!