I had one machine with my commonly used python package installed. and i would like to install the same package on another machine or same machine with different python version. I would like to know whether pip or easy-install or some other method can let me install those packages in a batch. When i use perl, it has something like a bundle package, how to do that in python?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Pip has some great features for this.
It lets you save all requirements from an environment in a file using You can then later do : You can also bundle several libraries into a I guess that's what you're looking for :) |
|||
|
I keep a Each of my projects also has it's own |
|||
|
|