From 8980a805602b755a0dd5e5a052ad7ba24e9a850d Mon Sep 17 00:00:00 2001 From: chrysle Date: Fri, 6 Jan 2023 12:51:45 +0100 Subject: [PATCH] Corrected installation steps for Ubuntu and pip --- docs/installation.rst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/installation.rst b/docs/installation.rst index 783b860..5f0935e 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -49,7 +49,7 @@ following things are installed: On Linux systems, using the distro's package manager is the best way to do this, for example, using Ubuntu:: - sudo apt-get install libxml2 libxslt1.1 zlib1g python + sudo apt-get install libxml2 libxslt1.1 zlib1g python3 Then you have several options. The following text applies for most Python software by the way. @@ -59,9 +59,8 @@ The dirty, easy way The easiest way to install vdirsyncer at this point would be to run:: - pip install --user --ignore-installed vdirsyncer + pip install --ignore-installed vdirsyncer -- ``--user`` is to install without root rights (into your home directory) - ``--ignore-installed`` is to work around Debian's potentially broken packages (see :ref:`debian-urllib3`).