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: articles/automation/change-tracking/overview.md
+33-7Lines changed: 33 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -73,18 +73,44 @@ Change Tracking and Inventory now support Python 2 and Python 3. If your machine
73
73
> To use the OMS agent compatible with Python 3, ensure that you first uninstall Python 2; otherwise, the OMS agent will continue to run with python 2 by default.
74
74
75
75
#### [Python 2](#tab/python-2)
76
-
- Red Hat, CentOS, Oracle: `yum install -y python2`
77
-
- Ubuntu, Debian: `apt-get install -y python2`
78
-
- SUSE: `zypper install -y python2`
76
+
- Red Hat, CentOS, Oracle:
77
+
78
+
```bash
79
+
sudo yum install -y python2
80
+
```
81
+
- Ubuntu, Debian:
82
+
83
+
```bash
84
+
sudo apt-get udpate
85
+
sudo apt-get install -y python2
86
+
```
87
+
- SUSE:
88
+
89
+
```bash
90
+
sudo zypper install -y python2
91
+
```
92
+
79
93
> [!NOTE]
80
94
> The Python 2 executable must be aliased to *python*.
81
95
82
96
#### [Python 3](#tab/python-3)
83
97
84
-
- Red Hat, CentOS, Oracle: `yum install -y python3`
0 commit comments