| ... | ... | @@ -32,7 +32,7 @@ python3.10 is only an example, replace with whatever python version is current o |
|
|
|
* Install python packages with pip3:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
pip3 install --upgrade nbxmpp omemo-dr pyobjc cryptography pillow idna precis-i18n certifi css-parser keyring packaging qrcode
|
|
|
|
pip3 install --upgrade nbxmpp omemo-dr pyobjc cryptography pillow idna precis-i18n certifi css-parser keyring packaging qrcode SQLAlchemy emoji
|
|
|
|
```
|
|
|
|
|
|
|
|
If you want to use current master of Gajim, dependencies differ a bit:
|
| ... | ... | @@ -40,17 +40,30 @@ python3.10 is only an example, replace with whatever python version is current o |
|
|
|
```bash
|
|
|
|
pip3 install --upgrade git+https://dev.gajim.org/gajim/python-nbxmpp.git
|
|
|
|
pip3 install --upgrade git+https://dev.gajim.org/gajim/omemo-dr.git
|
|
|
|
pip3 install --upgrade cryptography pyobjc pillow idna precis-i18n certifi css-parser keyring packaging qrcode
|
|
|
|
pip3 install --upgrade cryptography pyobjc pillow idna precis-i18n certifi css-parser keyring packaging qrcode SQLAlchemy emoji
|
|
|
|
```
|
|
|
|
|
|
|
|
## Download and run Gajim
|
|
|
|
## Download Gajim
|
|
|
|
|
|
|
|
```bash
|
|
|
|
git clone https://dev.gajim.org/gajim/gajim.git
|
|
|
|
cd gajim
|
|
|
|
```
|
|
|
|
|
|
|
|
### For Gajim 1.9.0
|
|
|
|
|
|
|
|
```bash
|
|
|
|
git checkout 1.9.0
|
|
|
|
```
|
|
|
|
|
|
|
|
### Or for Gajim master
|
|
|
|
|
|
|
|
```bash
|
|
|
|
git checkout master
|
|
|
|
```
|
|
|
|
|
|
|
|
## Run Gajim
|
|
|
|
|
|
|
|
You can now run Gajim from the terminal:
|
|
|
|
```bash
|
|
|
|
./launch.py
|
| ... | ... | |