diff --git a/README.rst b/README.rst
index 6f4da79..dfbb94c 100644
--- a/README.rst
+++ b/README.rst
@@ -15,19 +15,15 @@ It aims to be for CalDAV and CardDAV what `OfflineIMAP
.. image:: https://coveralls.io/repos/untitaker/vdirsyncer/badge.png?branch=master
:target: https://coveralls.io/r/untitaker/vdirsyncer?branch=master
-How to use
-==========
+Installation and usage
+======================
-vdirsyncer requires Python >= 2.7 or Python >= 3.3.
+If you already have it installed and want to quickly configure it, copy the
+``example.cfg`` to ``~/.vdirsyncer/config`` and edit it.
-As all Python packages, vdirsyncer can be installed with ``pip``::
-
- pip install --user vdirsyncer
-
-Then copy ``example.cfg`` to ``~/.vdirsyncer/config`` and edit it.
-
-Run ``vdirsyncer --help`` and check out `the documentation
-`_.
+If that method doesn't work for you or you want a deeper understanding of what
+you just did, check out `the tutorial
+`_.
How to run the tests
====================
diff --git a/docs/tutorial.rst b/docs/tutorial.rst
index 9fd0ba2..1983924 100644
--- a/docs/tutorial.rst
+++ b/docs/tutorial.rst
@@ -5,11 +5,29 @@ Tutorial
Installation
============
-- Make sure you have Python 2.7+ or Python 3.3+ installed.
+Vdirsyncer requires Python 2.7+ or 3.3+.
-- ``pip install --user vdirsyncer``
+Unless you want to contribute to vdirsyncer, you should use the packages from
+your distribution:
-- Check if the ``vdirsyncer`` command is available.
+- `AUR package for ArchLinux `_.
+- `pkgsrc `_.
+
+If your distribution doesn't provide a package for vdirsyncer, you still can
+use Python's package manager PIP. You'll have to check that a compatible
+version of Python is installed (see above), and then run::
+
+ pip install --user vdirsyncer
+
+This will install vdirsyncer and its dependencies into your home directory,
+presumably into ``~/local/lib/pythonX.X/``, and an executable under
+``~/.local/bin/``. You then can uninstall vdirsyncer with ``pip uninstall
+vdirsyncer``, but this will leave vdirsyncer's dependencies on your system,
+whose files you'll have to remove manually from the mentioned directories. You
+could check out pipsi_, but that one is a quite new tool. You should always
+prefer the packages of your distribution over this method.
+
+.. _pipsi:: https://github.com/mitsuhiko/pipsi
Configuration
=============