mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-22 09:35:45 +03:00
spell out that local libs may need to be explicitly given priority
This commit is contained in:
parent
63403aa7a5
commit
80e89772e2
1 changed files with 9 additions and 0 deletions
|
@ -108,6 +108,15 @@ To install the synapse homeserver run::
|
|||
This installs synapse, along with the libraries it uses, into
|
||||
``$HOME/.local/lib/`` on Linux or ``$HOME/Library/Python/2.7/lib/`` on OSX.
|
||||
|
||||
Your python may not give priority to locally installed libraries over system
|
||||
libraries, in which case you must add your local packages to your python path::
|
||||
|
||||
$ # on Linux:
|
||||
$ export PYTHONPATH=$HOME/.local/lib/python2.7/site-packages
|
||||
|
||||
$ # on OSX:
|
||||
$ export PYTHONPATH=$HOME/Library/Python/2.7/lib/python2.7/site-packages
|
||||
|
||||
For reliable VoIP calls to be routed via this homeserver, you MUST configure
|
||||
a TURN server. See docs/turn-howto.rst for details.
|
||||
|
||||
|
|
Loading…
Reference in a new issue