Rustom Mody writes:
> On Sunday, May 18, 2014 5:47:05 AM UTC+5:30, Ned Batchelder wrote:
> > Make a list of the [Python-specific] packages you need. Put it in a
> > file called requirements.txt. […]
>
> What about things installed at a lower level than pip, eg apt-get?
That's an important issue.
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 c
Ned Batchelder writes:
> 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.
Since these requirements are specifically for Python, more spe
On Sun, May 18, 2014 at 10:17 AM, Ned Batchelder wrote:
> 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.
+1. And the "keep up-to-date"
On 5/17/2014 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/si
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/s
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 als