hawarden_
hawarden_

Reputation: 2160

Install requests offline and without pip

I have a machine where Python 3.1 is installed. I want to install module "requests", but I have no pip and the machine is offline (no setuptools nor distribute). What should I do ?

Is it possible to install the module in my case ?

Upvotes: 1

Views: 7517

Answers (1)

Wesley Ruede
Wesley Ruede

Reputation: 50

You can grab a copy of requests from the repo: https://github.com/psf/requests/blob/master/README.md

git clone git://github.com/psf/requests.git

As noted in the comments requests only supports 2.7 and 3.5+ you can try hacking it up but, this is the supported method by the developers of the module.

I can safely tell you that the version you are looking for is between 0.2.4 (2011-02-19) which is when 2.5 support was added and 0.14.1 (2012-10-01) when 3.3 support was added.

There is a side note that 2.5 support was dropped on 0.10.1 (2012-01-23) and python 3 support was added. I started at 1.0.0 and worked my way through the change log. https://pypi.org/project/requests/1.0.0/#description

In all likelihood you are looking at 0.10.1 - 0.14.1 for the exact package. From there just download and install with the setup.py as per usual.

Upvotes: 3

Related Questions