Updated installation instructions.

This commit is contained in:
Jakub Roztocil 2014-03-04 18:24:32 +01:00
parent af6bda11af
commit 29877bc8ad
2 changed files with 7 additions and 8 deletions

View File

@ -61,15 +61,14 @@ Installation
============ ============
The latest **stable version** of HTTPie can always be installed or updated The latest **stable version** of HTTPie can always be installed or updated
to via `pip`_ (prefered) to via `pip`_ (prefered) or ``easy_install``:
or ``easy_install``:
.. code-block:: bash .. code-block:: bash
$ pip install --upgrade httpie $ pip install --upgrade httpie
Alternatively: If the above doesn't work:
.. code-block:: bash .. code-block:: bash
@ -89,9 +88,9 @@ Or, you can install the **development version** directly from GitHub:
$ pip install --upgrade https://github.com/jkbr/httpie/tarball/master $ pip install --upgrade https://github.com/jkbr/httpie/tarball/master
There are also packages available for `Ubuntu`_, `Debian`_, and possibly other Many Linux distributions provide an ``httpie`` package that can be installed
Linux distributions as well. However, there may be a significant delay between via the system package manager (e.g. ``yum install httpie`` or
official HTTPie releases and package updates. ``apt-get install httpie``).
===== =====

View File

@ -460,8 +460,8 @@ network.add_argument(
default='yes', default='yes',
help=""" help="""
Set to "no" to skip checking the host's SSL certificate. You can also pass Set to "no" to skip checking the host's SSL certificate. You can also pass
the path to a CA_BUNDLE file for private certs. You can also set the the path to a CA_BUNDLE file for private certs. You can also set the
REQUESTS_CA_BUNDLE environment variable. Defaults to "yes". REQUESTS_CA_BUNDLE environment variable. Defaults to "yes".
""" """
) )