summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorThomas Waldmann <tw@waldmann-edv.de>2015-09-12 19:26:46 +0200
committerThomas Waldmann <tw@waldmann-edv.de>2015-09-12 19:26:46 +0200
commitd74da7c031cc25da0b59ec420e8c815f9b6614b0 (patch)
tree8056d7b6ee6bde018b17174e4c10a1427d01da21 /docs
parente8f4fe0b88b63102cd04b92d526c7e9276cd776c (diff)
llfuse 0.41 install troubles on some platforms, require < 0.41
UnicodeDecodeError exception due to non-ascii llfuse setup.py
Diffstat (limited to 'docs')
-rw-r--r--docs/installation.rst6
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/installation.rst b/docs/installation.rst
index 4bc60569d..4d025c822 100644
--- a/docs/installation.rst
+++ b/docs/installation.rst
@@ -201,7 +201,8 @@ This uses the latest (source package) release from PyPi.
source borg-env/bin/activate # always before using!
# install borg + dependencies into virtualenv
- pip install llfuse # optional, for FUSE support
+ pip install 'llfuse<0.41' # optional, for FUSE support
+ # 0.41 and 0.41.1 have unicode issues at install time
pip install borgbackup
Note: we install into a virtual environment here, but this is not a requirement.
@@ -223,7 +224,8 @@ 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 # optional, for FUSE support
+ 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 -e . # in-place editable mode