diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2018-09-17 15:58:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-17 15:58:47 +0100 |
commit | c9c50284d71669ad2496c2b0af30c392428a67e5 (patch) | |
tree | 0ca0a017e272467d7b2a55d804452ce22c36c95b /README.rst | |
parent | Merge pull request #3888 from matrix-org/rav/nuke_nuke_rooms (diff) | |
download | synapse-c9c50284d71669ad2496c2b0af30c392428a67e5.tar.xz |
README: run python_dependencies with -m
... to stop things which try to import `types` getting `synapse.types` instead
Diffstat (limited to 'README.rst')
-rw-r--r-- | README.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/README.rst b/README.rst index cfcf8b5219..0147429aed 100644 --- a/README.rst +++ b/README.rst @@ -908,7 +908,7 @@ to install using pip and a virtualenv:: virtualenv -p python2.7 env source env/bin/activate - python synapse/python_dependencies.py | xargs pip install + python -m synapse.python_dependencies | xargs pip install pip install lxml mock This will run a process of downloading and installing all the needed |