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


Groups > comp.lang.python > #94255 > unrolled thread

Is there a way to install ALL Python packages?

Started byryguy7272 <ryanshuell@gmail.com>
First post2015-07-20 19:57 -0700
Last post2015-07-22 09:13 +0200
Articles 12 — 7 participants

Back to article view | Back to comp.lang.python


Contents

  Is there a way to install ALL Python packages? ryguy7272 <ryanshuell@gmail.com> - 2015-07-20 19:57 -0700
    Re: Is there a way to install ALL Python packages? Chris Angelico <rosuav@gmail.com> - 2015-07-21 13:17 +1000
      Re: Is there a way to install ALL Python packages? Rustom Mody <rustompmody@gmail.com> - 2015-07-20 20:24 -0700
        Re: Is there a way to install ALL Python packages? Chris Angelico <rosuav@gmail.com> - 2015-07-21 13:37 +1000
    Re: Is there a way to install ALL Python packages? Michael Torrie <torriem@gmail.com> - 2015-07-20 21:39 -0600
    Re: Is there a way to install ALL Python packages? Terry Reedy <tjreedy@udel.edu> - 2015-07-21 00:40 -0400
    Re: Is there a way to install ALL Python packages? Laura Creighton <lac@openend.se> - 2015-07-21 09:57 +0200
    Re: Is there a way to install ALL Python packages? tjohnson <tandrewjohnson@outlook.com> - 2015-07-21 08:10 -0400
    Re: Is there a way to install ALL Python packages? ryguy7272 <ryanshuell@gmail.com> - 2015-07-21 08:19 -0700
      Re: Is there a way to install ALL Python packages? tjohnson <tandrewjohnson@outlook.com> - 2015-07-21 17:53 -0400
    Re: Is there a way to install ALL Python packages? ryguy7272 <ryanshuell@gmail.com> - 2015-07-21 19:58 -0700
      Re: Is there a way to install ALL Python packages? Laura Creighton <lac@openend.se> - 2015-07-22 09:13 +0200

#94255 — Is there a way to install ALL Python packages?

Fromryguy7272 <ryanshuell@gmail.com>
Date2015-07-20 19:57 -0700
SubjectIs there a way to install ALL Python packages?
Message-ID<3e71ac8f-7976-455a-8432-f3986b2f78b1@googlegroups.com>
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 will 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?

Thanks all.

[toc] | [next] | [standalone]


#94258

FromChris Angelico <rosuav@gmail.com>
Date2015-07-21 13:17 +1000
Message-ID<mailman.798.1437448630.3674.python-list@python.org>
In reply to#94255
On Tue, Jul 21, 2015 at 12:57 PM, ryguy7272 <ryanshuell@gmail.com> 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 will 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

[toc] | [prev] | [next] | [standalone]


#94259

FromRustom Mody <rustompmody@gmail.com>
Date2015-07-20 20:24 -0700
Message-ID<70f52ebb-5c00-41d2-880c-b14745db973a@googlegroups.com>
In reply to#94258
On Tuesday, July 21, 2015 at 8:47:29 AM UTC+5:30, Chris Angelico wrote:
> 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 will 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

Dear Sir,

This is to inform you we have just received your application which is being duly considered.

Office of Bofh

[toc] | [prev] | [next] | [standalone]


#94269

FromChris Angelico <rosuav@gmail.com>
Date2015-07-21 13:37 +1000
Message-ID<mailman.805.1437454224.3674.python-list@python.org>
In reply to#94259
On Tue, Jul 21, 2015 at 1:24 PM, Rustom Mody <rustompmody@gmail.com> wrote:
> Dear Sir,
>
> This is to inform you we have just received your application which is being duly considered.
>
> Office of Bofh

Thank you for your consideration. I shall endeavour to provide
satisfaction, unless you reject my application, in which case I shall
publish what I know about you, the boss's secretary, and the low-light
camera placed in the boardroom prior to the Christmas break-up party.

ChrisA

[toc] | [prev] | [next] | [standalone]


#94262

FromMichael Torrie <torriem@gmail.com>
Date2015-07-20 21:39 -0600
Message-ID<mailman.800.1437449998.3674.python-list@python.org>
In reply to#94255
On 07/20/2015 08: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 will 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?

Since I'm sure there are conflicts between some packages as well as
completely broken packages, I suspect this isn't really possible or
desirable.

And it won't solve your problem.  If you can't get numpy and pandas to
install, you may have troubles with "everything" also.

Are you sure you followed the instructions on the page you linked to in
your pandas install thread?  Seems like you typed "python get-pip.py" in
a python prompt instead of your operating system command prompt.  I
recall telling you about this before.  You download the get-pip.py file,
put it somewhere, like on your desktop, then open the command prompt
window, cd to that directory, and then run "python get-pip.py" from your
cmd.exe C: prompt.

[toc] | [prev] | [next] | [standalone]


#94267

FromTerry Reedy <tjreedy@udel.edu>
Date2015-07-21 00:40 -0400
Message-ID<mailman.803.1437453632.3674.python-list@python.org>
In reply to#94255
On 7/20/2015 10:57 PM, ryguy7272 wrote:
> I'd like to install ALL Python packages on my machine.

There is no official list of Python packages to upload all of.

>  Even if it takes up 4-5GB, or more, I'd like to get everything,

There are 10000 packages on Pypi, and perhaps an equal number elsewhere.

 > and then use it when I need it.

Many are just names or junk that you would never use and do not want on 
your machine.  Many are specialized add-ons to another package.  It 
seems that Python is different from R.

pip can load a list of packages.  This is used daily to build machines 
with Python + a specified list.  It would be an interesting project for 
someone to make, publish, and update a 'sumo' list of the most useful 
packages that can all be loaded together.

-- 
Terry Jan Reedy

[toc] | [prev] | [next] | [standalone]


#94273

FromLaura Creighton <lac@openend.se>
Date2015-07-21 09:57 +0200
Message-ID<mailman.807.1437465432.3674.python-list@python.org>
In reply to#94255
>pip can load a list of packages.  This is used daily to build machines 
>with Python + a specified list.  It would be an interesting project for 
>someone to make, publish, and update a 'sumo' list of the most useful 
>packages that can all be loaded together.
>
>-- 
>Terry Jan Reedy

For a list of the 360 most dowloaded packages from PyPi look here:
http://pythonwheels.com/

Laura

[toc] | [prev] | [next] | [standalone]


#94287

Fromtjohnson <tandrewjohnson@outlook.com>
Date2015-07-21 08:10 -0400
Message-ID<mailman.813.1437480906.3674.python-list@python.org>
In reply to#94255
On 7/20/2015 10: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 will 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?
>
> Thanks all.
>
As others have stated, this is not practical with Python. If you were to 
install every single package from PyPI, you'd end up with packages like 
funny 0.1 or Barun_Heehaw, which is described as "A sample junk 
project." (No, I'm not joking.)

[toc] | [prev] | [next] | [standalone]


#94293

Fromryguy7272 <ryanshuell@gmail.com>
Date2015-07-21 08:19 -0700
Message-ID<c2c653e9-b81f-46b8-aced-eaf5c97c8c05@googlegroups.com>
In reply to#94255
On Monday, July 20, 2015 at 10:57:47 PM UTC-4, 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 will 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?
> 
> Thanks all.

Ok, this makes sense.  Thanks for the insight everyone!!

[toc] | [prev] | [next] | [standalone]


#94321

Fromtjohnson <tandrewjohnson@outlook.com>
Date2015-07-21 17:53 -0400
Message-ID<mailman.835.1437515607.3674.python-list@python.org>
In reply to#94293
On 7/21/2015 11:19 AM, ryguy7272 wrote:
> On Monday, July 20, 2015 at 10:57:47 PM UTC-4, 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 will 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?
>>
>> Thanks all.
>
> Ok, this makes sense.  Thanks for the insight everyone!!
>
I forgot to mention in my previous post that there are Python bundles 
like Anaconda and Enthought available, which come with numerous packages 
preinstalled. You may want to check them out.

[toc] | [prev] | [next] | [standalone]


#94342

Fromryguy7272 <ryanshuell@gmail.com>
Date2015-07-21 19:58 -0700
Message-ID<060f9fd7-d5d5-4f44-b5ac-b24ba4941ddd@googlegroups.com>
In reply to#94255
On Monday, July 20, 2015 at 10:57:47 PM UTC-4, 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 will 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?
> 
> Thanks all.


Thanks for the tip.  I just downloaded and installed Anaconda.  I just successfully ran my first Python script.  So, so happy now.  Thanks again!!

[toc] | [prev] | [next] | [standalone]


#94350

FromLaura Creighton <lac@openend.se>
Date2015-07-22 09:13 +0200
Message-ID<mailman.856.1437549244.3674.python-list@python.org>
In reply to#94342
In a message of Tue, 21 Jul 2015 19:58:31 -0700, ryguy7272 writes:
>Thanks for the tip.  I just downloaded and installed Anaconda.  I just successfully ran my first Python script.  So, so happy now.  Thanks again!!

Congratulations!  Keep on going! :)
Laura

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web