summary refs log tree commit diff
path: root/UPGRADE.rst
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2019-02-05 17:36:05 +0000
committerRichard van der Hoff <richard@matrix.org>2019-02-05 17:36:05 +0000
commit61dc53abe9ac6fce9a69a6655262853a66c09b11 (patch)
treecdcb0c0ef5044cf2d7045dc9ffad5a802c7d6c23 /UPGRADE.rst
parentMerge pull request #4570 from matrix-org/anoa/self_signed_upgrade (diff)
downloadsynapse-61dc53abe9ac6fce9a69a6655262853a66c09b11.tar.xz
fix some thinkos in UPGRADE.rst
Diffstat (limited to 'UPGRADE.rst')
-rw-r--r--UPGRADE.rst13
1 files changed, 7 insertions, 6 deletions
diff --git a/UPGRADE.rst b/UPGRADE.rst
index 75aef366bd..3643477250 100644
--- a/UPGRADE.rst
+++ b/UPGRADE.rst
@@ -5,20 +5,20 @@ Before upgrading check if any special steps are required to upgrade from the
 what you currently have installed to current version of synapse. The extra
 instructions that may be required are listed later in this document.
 
-1. If synapse was installed in a virtualenv then active that virtualenv before
-   upgrading. If synapse is installed in a virtualenv in ``~/.synapse/`` then
+1. If synapse was installed in a virtualenv then activate that virtualenv before
+   upgrading. If synapse is installed in a virtualenv in ``~/synapse/env`` then
    run:
 
    .. code:: bash
 
-       source ~/.synapse/bin/activate
+       source ~/synapse/env/bin/activate
 
 2. If synapse was installed using pip then upgrade to the latest version by
    running:
 
    .. code:: bash
 
-       pip install --upgrade matrix-synapse
+       pip install --upgrade matrix-synapse[all]
 
        # restart synapse
        synctl restart
@@ -31,8 +31,9 @@ instructions that may be required are listed later in this document.
 
        # Pull the latest version of the master branch.
        git pull
-       # Update the versions of synapse's python dependencies.
-       python synapse/python_dependencies.py | xargs pip install --upgrade
+
+       # Update synapse and its python dependencies.
+       pip install --upgrade .[all]
 
        # restart synapse
        ./synctl restart