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


Groups > comp.lang.python > #71719

Re: using a new computer and bringing needed libraries to it

Newsgroups comp.lang.python
Date 2014-05-17 20:29 -0700
References <a7f2ad0b-b148-4807-8221-08d42fba72cd@googlegroups.com> <mailman.10102.1400372406.18130.python-list@python.org>
Message-ID <a52840b3-448d-43ec-94f0-8b53c7b9a619@googlegroups.com> (permalink)
Subject Re: using a new computer and bringing needed libraries to it
From Rustom Mody <rustompmody@gmail.com>

Show all headers | View raw


On Sunday, May 18, 2014 5:47:05 AM UTC+5:30, Ned Batchelder wrote:
> On 5/17/14 7:53 PM, CM wrote:
> 

> > If I want to switch my work from one computer to a new one, and I
> > have lots of various libraries installed on the original computer,
> > what's the best way to switch that all to the new computer?  I'm
> > hoping there is some simple way like just copying the
> > Python/Lib/site-packages folder, but I'm also guessing this isn't
> > sufficient. I was hoping I wouldn't have to just one-by-one
> > install all of those libraries again on the newer computer.

> > I probably want to develop on BOTH these computers for the time
> > being, too.  One is at home and one is at a "remote site"/secret
> > lair.  And then I'll be doing it again when I buy a newer computer
> > at some point.

> 
> Make a list of the packages you need.  Put it in a file called 
> requirements.txt.  Then install them with:
> 
> 
>      $ pip install -r requirements.txt
> 
> 
> Keep that file up-to-date as you add new requirements.


What about things installed at a lower level than pip, eg apt-get?

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

using a new computer and bringing needed libraries to it CM <cmpython@gmail.com> - 2014-05-17 16:53 -0700
  Re: using a new computer and bringing needed libraries to it Ned Batchelder <ned@nedbatchelder.com> - 2014-05-17 20:17 -0400
    Re: using a new computer and bringing needed libraries to it Rustom Mody <rustompmody@gmail.com> - 2014-05-17 20:29 -0700
      Re: using a new computer and bringing needed libraries to it Ben Finney <ben@benfinney.id.au> - 2014-05-18 17:39 +1000
  Re: using a new computer and bringing needed libraries to it Terry Reedy <tjreedy@udel.edu> - 2014-05-17 20:29 -0400
  Re: using a new computer and bringing needed libraries to it Chris Angelico <rosuav@gmail.com> - 2014-05-18 10:30 +1000
  Pip requirements: Machine-readable configuration versus human-audience documentation (was: using a new computer and bringing needed libraries to it) Ben Finney <ben@benfinney.id.au> - 2014-05-18 12:01 +1000

csiph-web