mirror of
https://github.com/zulip/zulip.git
synced 2026-07-12 21:04:41 +08:00
The matrix integration folder in python-zulip-api changed its name from matrix to bridge_with_matrix but this was not reflected in the docs. Change the docs accordingly. Solves issue #545 in the python-zulip-api directory.
22 lines
614 B
Markdown
22 lines
614 B
Markdown
### Install the bridge software
|
|
|
|
1. Clone the Zulip API repository, and install its dependencies.
|
|
|
|
```
|
|
git clone https://github.com/zulip/python-zulip-api.git
|
|
cd python-zulip-api
|
|
python3 ./tools/provision
|
|
```
|
|
|
|
This will create a new Python virtualenv. You'll run the bridge service
|
|
inside this virtualenv.
|
|
|
|
1. Activate the virtualenv by running the `source` command printed
|
|
at the end of the output of the previous step.
|
|
|
|
1. Install the Matrix bridge software in your virtualenv, by running:
|
|
|
|
```
|
|
pip install -r zulip/integrations/bridge_with_matrix/requirements.txt
|
|
```
|