diff --git a/docs/user/install.rst b/docs/user/install.rst index 5f0ef9c4..b14ee310 100644 --- a/docs/user/install.rst +++ b/docs/user/install.rst @@ -7,20 +7,16 @@ This part of the documentation covers the installation of Requests. The first step to using any software package is getting it properly installed. -Distribute & Pip ----------------- +Pip Install +----------- -Installing Requests is simple with `pip `_, just run -this in your terminal:: +To install Requests, simply run this simple command in your terminal of choice:: $ pip install requests -or, with `easy_install `_:: - - $ easy_install requests - -But, you really `shouldn't do that `_. - +If you don't have `pip `_ installed (tisk tisk!), +`this Python installation guide `_ +can guide you through the process. Get the Code ------------ @@ -32,16 +28,12 @@ You can either clone the public repository:: $ git clone git://github.com/kennethreitz/requests.git -Download the `tarball `_:: +Or, download the `tarball `_:: $ curl -OL https://github.com/kennethreitz/requests/tarball/master + # optionally, zipball is also available (for Windows users). -Or, download the `zipball `_:: - - $ curl -OL https://github.com/kennethreitz/requests/zipball/master - - -Once you have a copy of the source, you can embed it in your Python package, -or install it into your site-packages easily:: +Once you have a copy of the source, you can embed it in your own Python +package, or install it into your site-packages easily:: $ python setup.py install