Browse Source

Give install requirements

Erik Johnston 8 years ago
parent
commit
f338bf9257
1 changed files with 7 additions and 1 deletions
  1. 7 1
      synapse/config/repository.py

+ 7 - 1
synapse/config/repository.py

@@ -22,7 +22,13 @@ MISSING_NETADDR = (
 )
 
 MISSING_LXML = (
-    "Missing lxml library. This is required for URL preview API."
+    """Missing lxml library. This is required for URL preview API.
+
+    Install by running:
+        pip install lxml
+
+    Requires libxslt1-dev system package.
+    """
 )