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:pypi': 0.03; 'subject:Python': 0.05; '21,': 0.07; 'cc:addr:python-list': 0.09; 'python': 0.10; 'up-to-date': 0.13; '12:57': 0.16; 'figure,': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'install.': 0.16; 'numpy': 0.16; 'released.': 0.16; 'subject:install': 0.16; 'wrote:': 0.16; 'versions': 0.20; '2015': 0.20; 'cc:2**0': 0.20; 'cc:addr:python.org': 0.20; 'import': 0.24; 'header:In-Reply-To:1': 0.24; 'install': 0.25; 'figure': 0.27; 'message-id:@mail.gmail.com': 0.27; 'idea': 0.28; 'too.': 0.30; "i'd": 0.31; 'url:python': 0.33; 'machine.': 0.33; 'option.': 0.33; 'tue,': 0.34; 'received:google.com': 0.35; 'but': 0.36; 'there': 0.36; 'url:org': 0.36; 'subject:?': 0.36; 'pm,': 0.36; 'subject:: ': 0.37; "won't": 0.38; 'sure': 0.39; 'takes': 0.39; 'grab': 0.64; 'packages,': 0.66; 'subject:there': 0.66; 'jul': 0.72; 'chrisa': 0.84; 'everything,': 0.84; 'pip': 0.84; 'to:none': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type:content-transfer-encoding; bh=cMbaVDboSatlVHN8rzTrvca8a1nSkP9Q/xSSK3Sfzk0=; b=NVh2mpmawwh+MDMnbRrL+grgB5HEgb8MAnnr9LHqPruaBhg3TMLNx0rC3Biy1T7i/Q syWAxqaKvazAmLixIEUnIDVGRnF5cnc7UnXozw6LRuRl7ig8Ewj/nXNcFOuMle57PJ8/ zohCv4cPNuviqPbD/xN/7V7ozhEYGmQyfqT2Q7IfWZIPvocwI6oerEhZrOJkdGPjLixh dRRPycFccIy7uYtvm1DTN9YIYgO9NWh1nqraUEhEgKpV42REcoXi1Sg37VYpPCLDV4Ce lla6+MuvOzWpBILXsgg2h9jtiH8xE/Mja334A36BzANOkm1W6oMj/nJO+TVSfAQqejqo Adpg== MIME-Version: 1.0 X-Received: by 10.107.132.7 with SMTP id g7mr41600354iod.9.1437448621886; Mon, 20 Jul 2015 20:17:01 -0700 (PDT) In-Reply-To: <3e71ac8f-7976-455a-8432-f3986b2f78b1@googlegroups.com> References: <3e71ac8f-7976-455a-8432-f3986b2f78b1@googlegroups.com> Date: Tue, 21 Jul 2015 13:17:01 +1000 Subject: Re: Is there a way to install ALL Python packages? From: Chris Angelico Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ 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: 1437448630 news.xs4all.nl 2830 [2001:888:2000:d::a6]:41505 X-Complaints-To: abuse@xs4all.nl Path: csiph.com!usenet.pasdenom.info!news.stben.net!border1.nntp.ams1.giganews.com!nntp.giganews.com!newsfeed.xs4all.nl!newsfeed8.news.xs4all.nl!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Xref: csiph.com comp.lang.python:94258 On Tue, Jul 21, 2015 at 12:57 PM, ryguy7272 wrote: > I'd like to install ALL Python packages on my machine. Even if it takes = up 4-5GB, or more, I'd like to get everything, and then use it when I need = it. Now, I'd like to import packages, like numpy and pandas, but nothing w= ill install. I figure, if I can just install everything, I can simply use = it when I need it, and if I don't need it, then I just won't use it. > > I know R offers this as an option. I figure Python must allow it too. > > Any idea how to grab everything? > pip install `wget https://pypi.python.org/simple/ -qO- |html2text` Then figure out if there are any conflicts. And make sure you stay up-to-date as packages get new versions released. Good luck. ChrisA