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
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
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
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.
[.