summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2014-09-21 13:58:44 -0400
committerTim Graham <timograham@gmail.com>2014-09-22 15:49:48 -0400
commit37b13033c61d24045b8182944c0964fffc8ff7d0 (patch)
tree2e26f70a79cf870c12638f917a6bff688755097d
parent24aa85cea9d741fcbc288f12f59e22f1d05f79d7 (diff)
Removed sudo from pip commands in docs.
-rw-r--r--docs/README2
-rw-r--r--docs/howto/deployment/wsgi/gunicorn.txt2
-rw-r--r--docs/howto/outputting-pdf.txt2
-rw-r--r--docs/internals/contributing/writing-documentation.txt2
-rw-r--r--docs/intro/whatsnext.txt2
-rw-r--r--docs/ref/contrib/gis/install/index.txt2
-rw-r--r--docs/ref/contrib/gis/install/spatialite.txt2
-rw-r--r--docs/topics/i18n/timezones.txt2
8 files changed, 8 insertions, 8 deletions
diff --git a/docs/README b/docs/README
index 3a48a5f254..4785eab70e 100644
--- a/docs/README
+++ b/docs/README
@@ -6,7 +6,7 @@ This allows it to be built into other forms for easier viewing and browsing.
To create an HTML version of the docs:
-* Install Sphinx (using ``sudo pip install Sphinx`` or some other method)
+* Install Sphinx (using ``pip install Sphinx`` or some other method)
* In this docs/ directory, type ``make html`` (or ``make.bat html`` on
Windows) at a shell prompt.
diff --git a/docs/howto/deployment/wsgi/gunicorn.txt b/docs/howto/deployment/wsgi/gunicorn.txt
index c5c5ba9e22..4cde1257da 100644
--- a/docs/howto/deployment/wsgi/gunicorn.txt
+++ b/docs/howto/deployment/wsgi/gunicorn.txt
@@ -12,7 +12,7 @@ dependencies and is easy to install and use.
Installing Gunicorn
===================
-Installing gunicorn is as easy as ``sudo pip install gunicorn``. For more
+Installing gunicorn is as easy as ``pip install gunicorn``. For more
details, see the `gunicorn documentation`_.
.. _gunicorn documentation: http://docs.gunicorn.org/en/latest/install.html
diff --git a/docs/howto/outputting-pdf.txt b/docs/howto/outputting-pdf.txt
index d15f94f7f4..2c0cb277cc 100644
--- a/docs/howto/outputting-pdf.txt
+++ b/docs/howto/outputting-pdf.txt
@@ -27,7 +27,7 @@ Alternatively, you can also install it with ``pip``:
.. code-block:: bash
- $ sudo pip install reportlab
+ $ pip install reportlab
Test your installation by importing it in the Python interactive interpreter::
diff --git a/docs/internals/contributing/writing-documentation.txt b/docs/internals/contributing/writing-documentation.txt
index 8b842eff2a..aec51b0742 100644
--- a/docs/internals/contributing/writing-documentation.txt
+++ b/docs/internals/contributing/writing-documentation.txt
@@ -46,7 +46,7 @@ __ http://sphinx-doc.org/
__ http://docutils.sourceforge.net/
To actually build the documentation locally, you'll currently need to install
-Sphinx -- ``sudo pip install Sphinx`` should do the trick.
+Sphinx -- ``pip install Sphinx`` should do the trick.
.. note::
diff --git a/docs/intro/whatsnext.txt b/docs/intro/whatsnext.txt
index 4a5c3e21ff..6da2aa830b 100644
--- a/docs/intro/whatsnext.txt
+++ b/docs/intro/whatsnext.txt
@@ -165,7 +165,7 @@ You can get a local copy of the HTML documentation following a few easy steps:
.. code-block:: bash
- $ sudo pip install Sphinx
+ $ pip install Sphinx
* Then, just use the included ``Makefile`` to turn the documentation into
HTML:
diff --git a/docs/ref/contrib/gis/install/index.txt b/docs/ref/contrib/gis/install/index.txt
index 46e85914c6..4d3c66ec2c 100644
--- a/docs/ref/contrib/gis/install/index.txt
+++ b/docs/ref/contrib/gis/install/index.txt
@@ -326,7 +326,7 @@ psycopg2
After you've installed the KyngChaos binaries and modified your ``PATH``, as
described above, ``psycopg2`` may be installed using the following command::
- $ sudo pip install psycopg2
+ $ pip install psycopg2
.. note::
diff --git a/docs/ref/contrib/gis/install/spatialite.txt b/docs/ref/contrib/gis/install/spatialite.txt
index 472d19f8ab..a68c5eace0 100644
--- a/docs/ref/contrib/gis/install/spatialite.txt
+++ b/docs/ref/contrib/gis/install/spatialite.txt
@@ -159,7 +159,7 @@ or if you are on Mac OS X:
After modifying ``setup.cfg`` appropriately, then run the ``setup.py`` script
to build and install::
- $ sudo python setup.py install
+ $ python setup.py install
.. _spatialite_macosx:
diff --git a/docs/topics/i18n/timezones.txt b/docs/topics/i18n/timezones.txt
index 67c3d613f3..348ac64978 100644
--- a/docs/topics/i18n/timezones.txt
+++ b/docs/topics/i18n/timezones.txt
@@ -36,7 +36,7 @@ or times, please try installing it before filing a bug. It's as simple as:
.. code-block:: bash
- $ sudo pip install pytz
+ $ pip install pytz
.. note::