Re: [BangPypers] combine multiple modules in one

2014-12-23 Thread Saager Mhatre
On Wed, Dec 17, 2014 at 1:05 PM, Nitin Kumar wrote: > Hi, > > say I am installing a module "abc" and it got multiple dependent modules > say xyz pqr. > pip easy install will take care of downloading and installing these. > > but i need to install "abc" on a device which doesnt have net connection

Re: [BangPypers] combine multiple modules in one

2014-12-17 Thread Kulkarni, Shreyas
PIP_DOWNLOAD_CACHE could help you, if the device-without-connectivity has the same arch as the device-with-connectivity. pip stores downloaded bundles in the PIP_DOWNLOAD_CACHE folder, if one is set. I guess, you could just copy over this folder to the device-without-connectivity, set it as PIP

Re: [BangPypers] combine multiple modules in one

2014-12-17 Thread Amish Anand
There is also another way similar to what Gora has mentioned: https://devcenter.heroku.com/articles/python-pip#local-file-backed-distributions However for modules that need C extensions and C libraries, platform dependencies have to be taken care of, probably we can use pre compiled egg files for d

Re: [BangPypers] combine multiple modules in one

2014-12-17 Thread Gora Mohanty
On 17 December 2014 at 23:35, Nitin Kumar wrote: > Hi, > > say I am installing a module "abc" and it got multiple dependent modules > say xyz pqr. > pip easy install will take care of downloading and installing these. > > but i need to install "abc" on a device which doesnt have net connection. [.