1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-23 16:26:29 +00:00

docs: use pip extras or requirements file to install llfuse

This commit is contained in:
Thomas Waldmann 2016-02-07 19:15:30 +01:00
parent c2edfab237
commit 2f95c8ea79

View file

@ -206,14 +206,14 @@ This will use ``pip`` to install the latest release from PyPi::
source borg-env/bin/activate
# install Borg + Python dependencies into virtualenv
pip install 'llfuse<0.41' # optional, for FUSE support
# 0.41 and 0.41.1 have unicode issues at install time
pip install borgbackup
# or alternatively (if you want FUSE support):
pip install borgbackup[fuse]
To upgrade |project_name| to a new version later, run the following after
activating your virtual environment::
pip install -U borgbackup
pip install -U borgbackup # or ... borgbackup[fuse]
.. _git-installation:
@ -231,10 +231,9 @@ While we try not to break master, there are no guarantees on anything. ::
# install borg + dependencies into virtualenv
pip install sphinx # optional, to build the docs
pip install 'llfuse<0.41' # optional, for FUSE support
# 0.41 and 0.41.1 have unicode issues at install time
cd borg
pip install -r requirements.d/development.txt
pip install -r requirements.d/fuse.txt # optional, for FUSE support
pip install -e . # in-place editable mode
# optional: run all the tests, on all supported Python versions