You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+52-2Lines changed: 52 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,9 +36,9 @@ Dependencies:
36
36
37
37
*[aiohttp](https://github.com/aio-libs/aiohttp) (in case of async use)
38
38
39
-
## Documentation
39
+
## Installation
40
40
41
-
### Installation
41
+
### Installation from PyPI
42
42
43
43
Install **zabbix_utils** library using pip:
44
44
@@ -52,6 +52,56 @@ To install the library with dependencies for asynchronous work use the following
52
52
$ pip install zabbix_utils[async]
53
53
```
54
54
55
+
### Installation from Zabbix repository
56
+
57
+
First of all, you need to install Zabbix repository. Official Zabbix packages for Red Hat Enterprise Linux and derivatives, as well as for Debian and derivatives are available on [Zabbix website](https://www.zabbix.com/download).
58
+
59
+
**Red Hat Enterprise Linux and derivatives**
60
+
61
+
Install **zabbix_utils** library from Zabbix repository:
62
+
63
+
```bash
64
+
# dnf install python3-zabbix-utils
65
+
```
66
+
67
+
To install additional dependencies such as aiohttp for asynchronous work use the following way:
68
+
```bash
69
+
# dnf install epel-release
70
+
# dnf install python3-aiohttp
71
+
```
72
+
73
+
**Debian / Ubuntu and derivatives**
74
+
75
+
Install **zabbix_utils** library from Zabbix repository:
76
+
77
+
```bash
78
+
# apt install python3-zabbix-utils
79
+
```
80
+
81
+
To install additional dependencies such as aiohttp for asynchronous work use the following way:
0 commit comments