Corrected installation steps for Ubuntu and pip

This commit is contained in:
chrysle 2023-01-06 12:51:45 +01:00 committed by Hugo
parent 90b6ce1d04
commit 8980a80560

View file

@ -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`).